-
CT256
该上传的256张CT图片是高质量的DICOME格式人类头骨的连续序列切片图,可直接用于医学三维重建或体绘制。(The upload of 256 CT images are of high quality DICOME form a continuous sequence of the human skull slice diagram can be directly used in medical 3D reconstruction or volume rendering.)
- 2010-03-06 18:50:45下载
- 积分:1
-
jm5.0c
视频编解码技术,在有限带宽的情况下,能够大幅度的压缩编码比特数,图像的质量没有丝毫的下降。(Video codec technology, in the case of limited bandwidth can be substantial coding bits, the image quality is not the slightest decline.)
- 2010-08-23 13:34:24下载
- 积分:1
-
kmeans
kmeans算法实现,对图像处理。亲自使用过,可用,供参考。(Kmeans algorithm for image processing.)
- 2013-10-17 10:57:41下载
- 积分:1
-
IProcessN
VC.NET图象处理,采用基于CImage类的图象处理技术,封装的函数为基本的图象处理部分,如几何变换等等,开发环境为VC++.NET(VC.NET image processing, based on CImage kind of image processing technology, Packaging for the basic functions of image processing, such as geometric transformation, and so on, the environment for the development of the VC.NET)
- 2006-12-13 15:57:06下载
- 积分:1
-
1
说明: 图像处理的位图操作,256色转为灰度图,图像处理入门源程序(Bitmap image processing operations, 256-color to grayscale, image processing, entry-source)
- 2010-06-02 21:11:10下载
- 积分:1
-
OPENCVIMAGEPROCESS
OPENCV图像处理模板,有界面编程的,以后运用opencv直接在里面填写代码就可以了(OPENCV image processing template, with interface programming, and after using opencv code directly on the inside can be a complete)
- 2010-05-10 16:52:17下载
- 积分:1
-
detectline
包含滤波模板,形态学运算,边缘检测结合经自己修改过的hough变换编写的vc程序,成功检测机场跑道和任何图像中最明显的现状特征,经测试,检测精度高。对学习vc编程用于图像处理有帮助。(hough transform based image processing package which is useful for detecting airfield like straight line features.)
- 2009-07-16 15:27:30下载
- 积分:1
-
yibiaoshibie
图像处理的指针式仪表识别,利用OPENCV库,MFC对话框程序(Image processing pointer instrument identification, the OPENCV libraries, MFC dialog program)
- 2021-04-26 08:58:45下载
- 积分: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
-
Labeling
对于二值图像进行labeling,求的对象个数,每个对象的像素数,中心点,长宽高矮值等(labeling for bianry image)
- 2011-05-09 13:54:15下载
- 积分:1