-
CBCT
FDK重建算法 希望对其他人能有帮助 用C和cuda 实现的(fdk reconstrcution algorithm using cuda
and c source code hope to help others it may be usefull. it is implented by c and cuda)
- 2021-01-09 18:38:50下载
- 积分:1
-
pipei
改程序就代码可以找出从不同角度或区间的两幅遥感影像的同名点(Change the program code can find it from different angles of the same name point or interval of two remote sensing images)
- 2014-05-17 15:48:13下载
- 积分:1
-
dct11
DCT1.m为一维离散余弦变换exp22.m为对一幅灰度图像进行离散余弦变换
exp23.m为对一幅彩色图像进行离散余弦变换(DCT1.m for the one-dimensional discrete cosine transform exp22.m for a gray image exp23.m discrete cosine transform for the color of an image discrete cosine transform)
- 2021-04-22 16:48:49下载
- 积分:1
-
fenshui3
该程序是对原图像进行梯度加掩模的三次分水岭分割(That the procedure was in the original image mask plus three gradient watershed segmentation)
- 2008-06-16 12:44:38下载
- 积分:1
-
off
off文件读取绘图函数,能读取顶点坐标和拓扑关系,并以此绘制三维模型图像,使用可以直接调用,需要注意参数的类型,只能读要取off(Off file to read the drawing function, can read the vertex coordinates and topological relations, and in order to draw the three-dimensional model images, the use of direct calls, you need to pay attention to the type of parameters, can only read to take off
)
- 2016-05-02 21:11:10下载
- 积分:1
-
centroid
已知一图像的轮廓,计算该轮廓质心,并标注在图上(A known the outline of image, the contour centroid calculation, and marked on the map
)
- 2012-04-11 16:38:08下载
- 积分:1
-
c# 饼形图分析公司男女比例 附源码
c# 饼形图分析公司男女比例 附源码
- 2013-05-15下载
- 积分:1
-
MATLAB_svmmatlabtoolbox
支持向量机的工具箱,对于图像处理中的分类识别学习者有着很大帮助。分享快乐!(SVM toolbox for image processing in the classification and identification of learners have a great help to me. To share their happiness!)
- 2007-10-11 01:09:43下载
- 积分:1
-
denoise_image
图像处理中的一种降噪方法,对去掉图像的噪声有很好的效果(Image processing method of a noise reduction of images to remove the effect of noise has a very good)
- 2009-04-02 16:01:33下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1