-
histogram_balance.zip
说明: 直方图均衡化,matlab做的,大家可以下载分析,便于图象处理编程学习(histogram equalization, Matlab done, we can download analysis, image processing program to facilitate learning)
- 2006-03-03 14:49:09下载
- 积分:1
-
weifen--malab
光谱微分(一阶、二阶微分)对高光谱遥感图像进行最佳波段选择 (Spectral radiant brightness)
- 2020-11-19 20:19:37下载
- 积分:1
-
paper-and-matlab-code
新发表论文Graph cuts based active contour model with selective local or global segmentation 附源码,基于图割的主动轮廓模型,用于有选择的局部分割或全局分割,欢迎下载!(Published Graph cuts based active the contour the model with selective local or global a segmentation attached source, the active contour model based on graph cuts for selected local partition or global segmentation are welcome to download!)
- 2012-08-05 09:43:50下载
- 积分:1
-
200732590069
说明: 非常好的图像处理全面软件,包括滤波等基本操作(Very good overall image processing software, including basic operations such as filtering)
- 2011-04-14 10:33:15下载
- 积分:1
-
graycomatrix
用MATLAB编写的灰度共生矩阵程序代码(matlab gravt level co-occurence matrix)
- 2009-03-05 10:57:01下载
- 积分:1
-
dx-4.4.4.tar
图像的纹理特征参数的灰度共生矩阵的计算,该方法效果好,速度快,易理解。(The image texture characteristic parameters GLCM calculation, the method effective, fast, easy to understand.)
- 2010-02-23 15:45:57下载
- 积分:1
-
matlab
基于MATLAB-GUI图形界面的数字图像处理软件 本系统设计基于GUI图形界面,用matlab语言编写代码,实现功能包括图象的读取、存储、显示、直方图均衡化、阈值化、小波分解、小波重构、加噪、去噪、平滑、锐化、边缘检测、图像分割等(MATLAB-GUI graphical user interface based on digital image processing software of the system design is based on GUI graphical interface, using matlab language to write code to achieve functionality, including image reading, storage, display, histogram equalization, thresholding, wavelet decomposition, wavelet reconstruction, add noise, denoising, smoothing, sharpening, edge detection, image segmentation, etc.)
- 2020-06-25 23:20:02下载
- 积分: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
-
BWLabel
一种二值图像连通区域标记方法,能用于目标跟踪,我已经应用过,效果不错。(It is a new connected componet labeling algorithm for binary image,and can be used in object tracking. It is effective to be proved.)
- 2013-06-24 14:08:47下载
- 积分:1
-
matlab
小波分析在图像处理中有非常重要的应用,包括图像压缩,图像去噪,图像融合,图像分解,图像增强等。文中给出了详细的程序范例,用MATLAB实现了基于小波变换的图像处理。(Wavelet analysis in image processing has very important applications, including image compression, image denoising, image fusion, image decomposition, image enhancement. The paper gives detailed procedures for example, implemented with the MATLAB image processing based on wavelet transform.)
- 2010-11-10 22:06:35下载
- 积分:1