-
dakai
实现彩色图像的N*N 中值滤波器,可选择滤波系数。(To achieve the N* N color image median filter, selectable filter coefficients.)
- 2011-06-27 11:20:06下载
- 积分:1
-
domin
这是一款适用于初学者的应用程序,它可以帮助我们处理图形图像(This is a beginner for the application, it can help us to deal with graphic images)
- 2009-05-14 09:05:23下载
- 积分:1
-
dsa
说明: 用VC实现数字减影算法,通过模板匹配,再对两幅图像相减,即用盈片中减去蒙片,从而实现突出血管区域的目的。【源码加文档说明】(Using VC to achieve digital subtraction algorithm, template matching, and then the subtraction of two images, that the film with surplus minus mask, in order to achieve the purpose of highlighting vascular region. 【Source】 plus documented)
- 2010-04-18 22:39:04下载
- 积分:1
-
dizi-data
各种图像处理算法集合,包括灰度、滤波等,已调试,可用。(Collection of a variety of image processing algorithms, including grayscale, filtering, etc.)
- 2013-04-21 20:54:48下载
- 积分:1
-
sichashu
说明: 四叉树程序,图像处理,要做这个的可以看看(Quadtree procedures, image processing, that can do this look)
- 2021-04-27 21:18:44下载
- 积分:1
-
jpeg_C_orign
jpeg编码工程(YUV2RGB)
文件中含有说明文件,保证可以使用(jpeg encoding works (YUV2RGB) file contains the documentation to ensure that you can use)
- 2007-11-15 20:43:30下载
- 积分:1
-
main
图像球面化,对于输入的图片进行球面变换达到图形变形的效果(Spherical image of, for input images to spherical transformation to achieve the effect of graph distortion)
- 2020-11-26 14:19:30下载
- 积分: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
-
TextAnalysis
图像的纹理分析应用实例,主要可用于模式识别当中(image texture analysis application, which can be used for pattern recognition)
- 2007-04-21 17:13:24下载
- 积分:1
-
pictureshow
可以显示图像并显示大话西游中的经典台词,还可以播放动听的背景音乐。(Can display images and display the classic Journey to the West in the lines, but also can play pleasant background music.)
- 2010-06-29 23:22:22下载
- 积分:1