-
yuezhifenggedejizhngsuanfa
在做图像处理时用遇到图像的阈值分割,这是几种图像的阈值分割方法(In doing image processing with experience image threshold segmentation, which is one of several image thresholding segmentation method)
- 2013-11-22 16:01:06下载
- 积分:1
-
DLA
基于分片重排列技术的维数约简方法,用于特征提取。(Patch Alignment for Dimensionality Reduction,IEEETrans.,2009.)
- 2013-08-30 12:39:23下载
- 积分:1
-
JFSSL-Cross-Modal-Retrieval-master
说明: 联合特征选择和子空间相关性学习的跨模态检索,map优于典型相关性分析的跨模态检索(Joint Feature Selection and Subspace Learning for Cross-Modal Retrieval)
- 2021-04-21 21:18:49下载
- 积分:1
-
demosaic
图像处理源代码,进行图像插入,图像恢复,图像增强等,进行图像处理(Image processing source code, image insertion, image restoration, image enhancement and so on, to carry out image processing)
- 2008-01-02 18:54:27下载
- 积分:1
-
zuoye
matlab 噪声处理 白平衡处理 很强大的一段处理程序(matlab noise processing section of the white balance processing is a powerful process)
- 2011-05-21 19:46:45下载
- 积分:1
-
纹理图像分割
纹理图像分割的算法和实例,其中包括理论的讲解和 MATLAB 文件。(Algorithms and Examples of Texture Image Segmentation)
- 2018-12-03 20:55:42下载
- 积分:1
-
KSVD
稀疏表示中字典学习算法KSVD的实现,可以得到冗余字典,代码内部有详细注释(The realization of the sparse representation of a dictionary learning algorithm KSVD, can get a redundant dictionary, internal has a detailed code comments)
- 2014-03-02 14:00:40下载
- 积分: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
-
ENVIMNFTrans
高光谱图像进行MNF变换,采用MAF评价图像的噪声;处理过程与ENVI软件中的完全一样。(MNF transformation of hyperspectral images, using noise MAF to evaluate the image.the process is exactly the same with ENVI software .)
- 2014-07-21 10:29:49下载
- 积分:1
-
imageinpainting2
基于小波变换的图像修复算法基于小波变换的图像修复算法(Wavelet-Based Image Inpainting Algorithm Based on Wavelet Transform Algorithm for Image Inpainting)
- 2021-04-23 20:48:47下载
- 积分:1