-
HAO
画椭圆和圆和直线的二值图求边缘点斜率(Draw the ellipse and the circle and the straight line of the binary image to find the edge slopeDraw the ellipse and the circle and the straight line of the binary image to find the edge slope)
- 2017-05-10 20:55:01下载
- 积分:1
-
MNF
说明: 最小噪声分离变换(Minimum Noise Fraction Rotation,MNF Rotation)工具用于判定图像数据内在的维数(即波段数),分离数据中的噪声,减少随后处理中的计算需求量(Minimum Noise Fraction Rotation (MNF Rotation) tool is used to determine the intrinsic dimension (i.e. band number) of image data, separate the noise in data, and reduce the computational requirements in subsequent processing.)
- 2020-06-26 15:40:02下载
- 积分:1
-
SURFpipei_matlabfunctiontest
实现SURF特征点描述子算法,并使用Oxford Dataset图像自动进行精度评价(SURF feature descriptor and matching precision evaluation)
- 2018-08-07 22:16:32下载
- 积分:1
-
Nystrom-Ncut
图论分割算法之一“Nystrom Ncut”MatLAB源程序。(MatLAB codeof “Nystrom Ncut”.)
- 2011-11-13 21:40:46下载
- 积分:1
-
DWT-watermark
一些dwt数字水印 源码和一些资料希望对大家有用 呵呵(dwt digital watermarking)
- 2010-05-12 21:33:04下载
- 积分: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
-
对图像进行除雾处理
说明: 基于matlab 的图像除雾算法。可以很大程度去除雾霾对图像的影响。(Image Defogging Algorithm Based on matlab. The influence of smog on images can be removed to a great extent.)
- 2020-03-26 13:53:02下载
- 积分:1
-
retinex_frankle_mccann
Retinex算法对较暗区域的图像处
理有明显效果,改进的Retinex方法则是基于经典Retinex,对具有较高亮度的遥感图像通过图像变
换方法达到去除模糊的目的。
(Retinex algorithm for image processing on the dark region was effective to improve the Retinex method is based on the classic Retinex, on remote sensing images with high brightness achieved by an image transformation method aims to remove ambiguity.)
- 2010-06-10 16:24:00下载
- 积分:1
-
xjs1
用matlab对图像进行锐化,加噪,滤波,平滑滤波,中值滤波等处理(Matlab is used to sharpen the image, add noise, filter, smooth filter, median filter and so on)
- 2018-04-12 09:00:34下载
- 积分:1
-
Matlab
人耳识别,包含图像预处理,图像特征点的提取,比较实用(Ear recognition)
- 2013-12-18 10:37:54下载
- 积分:1