-
gradephase
传统的相位编组,将梯度分为8个方向,对边缘检测有很好的效果。(Traditional phase grouping, will be divided into eight direction of the gradient of edge detection are very good results.)
- 2020-07-14 21:18:51下载
- 积分: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
-
wcompress_upload.m
可对灰度及彩色图像进行压缩及解压缩,通过变量名可以实现基于不同方式(多级树集合分裂spiht,ezw,stw,wdr等)的压缩,形如wcompress( c ,X,SAV_FILENAME,COMP_METHOD)(The wcompress command performs either compression or uncompression of grayscale or truecolor images.)
- 2016-04-14 16:44:33下载
- 积分:1
-
sfpxh3
A fast matching algorithm based on image gray scale, in PDF format, good
- 2017-05-07 11:10:28下载
- 积分:1
-
Image2txt
将图片通过灰度值转化为文字符号,并排列为原来图像的样式。
(Convert image by gray scale value into text symbols, side by side as the style of the original image.
)
- 2016-03-02 15:51:11下载
- 积分:1
-
cloud
这是一个很全的云模型图像处理,功能全,已运行(This is a good use of the cloud model program, function, good effect, has been in operation)
- 2020-12-28 19:09:01下载
- 积分:1
-
ResponseFunc
求取相机响应函数,并绘制相对曝光量-灰度曲线(Camera response function, and draw the relative exposure- gray curve
)
- 2021-02-19 22:09:44下载
- 积分:1
-
singalframenuc
通过统计直方图并作相应的处理完成了红外图像非均匀性校正,特别是针对红外图像中常见的条纹非均匀性(Through statistical histogram and processed accordingly infrared image non-uniformity correction, especially for the common striped infrared image non-uniformity)
- 2021-02-10 16:29:52下载
- 积分:1
-
photo-viewer
一个图片浏览器程序,除了基本的图片浏览功能外,还包括图像特效处理功能和特效处理算法。(An image browser program, in addition to basic image browsing functions, including image effects processing capabilities and effects-processing algorithms.)
- 2011-10-19 16:05:12下载
- 积分:1
-
小波模极大值程序
说明: 小波模极大源代码,可用来进行小波降噪或小波模态参数识别(Wavelet modal maximum source code, can be used for wavelet noise reduction or wavelet modal parameter identification)
- 2020-10-16 10:35:01下载
- 积分:1