-
Tvandpde
这是一个有界差分方法进行分割的例子,对于学习数学图像处理的同学,有启发作用(This is a difference method has industry segmentation example, for image processing mathematics students, has inspired the role of)
- 2007-07-27 10:16:40下载
- 积分:1
-
SPIHT2
根据paper思想,自己编写的SPIHT编解码。可以处理不同图像大小的小波系数,严格按照paper中的算法编写。细节见说明文档(under the paper thinking, their preparation SPIHT codec. Image can handle different sizes of the wavelet coefficients and strictly according to the paper prepared algorithm. For details, see the documentation)
- 2007-04-18 11:41:46下载
- 积分:1
-
lineDehaze
一种基于景深的去雾方法,将按通道中的最大值和最小值作为景深基准线,计算其垂直方向上的暗通道像素均值作为透射图,实现去雾,对航拍图效果显著(A dehaze method based on the depth of field, draw a depth datum line according to the maximum value and minimum value of the dark channel, calculate the pixel of the dark channel at the line perpendicular to the depth datum line.Then the transmission map has been gotten. This method performs good especially when processing the aerial map.)
- 2016-11-11 16:53:53下载
- 积分:1
-
image
简单的图形处理程序 传上来提供给更多人学习 欢迎大家交流代码(Simple graphics program available to more people pass up study welcome to share code)
- 2011-10-27 16:49:42下载
- 积分:1
-
window
可根据需要自定义窗口形状,用于各种特效窗口开发(Customizable window shape, for a variety of special effects needed to develop window)
- 2014-02-07 14:42:46下载
- 积分:1
-
exp1
计算一幅灰度图像的直方图;进行简单的线性变换,并与源图像的直方图做变换;利用直方图均衡化进行图像增强(Calculating a gray-scale image histogram simple linear transformation, and to do with the source image histogram transformation the use of histogram equalization for image enhancement)
- 2009-10-14 14:07:34下载
- 积分:1
-
S_R
图像稀疏表示源代码,实现输入图像的稀疏表示,有MOP,KSVD等算法(Matlab m-file code of Iamge Representation,it can run,contains MOP,KSVD.)
- 2014-08-25 18:01:47下载
- 积分:1
-
example
2维相控阵方向图,用的是fft算法,验证正确为。(wo-dimensional phased-array pattern, using the fft algorithm, the right to verify.)
- 2021-01-22 15:08:41下载
- 积分: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
-
GI
说明: GI 鬼成像源代码,关联算法和一些数据读取存储等问题 的解决方案(ghost imaging code)
- 2013-06-03 15:03:43下载
- 积分:1