-
去雾算法halcon代码实现
去雾算法halcon代码实现
- 2020-05-15下载
- 积分:1
-
color_moments
图像颜色一阶矩、二阶矩、三阶矩特征抽取。不带图像分块。(Image color first moment, second moment and three moments features)
- 2014-11-04 14:19:55下载
- 积分: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
-
lee-frost-kuan
SAR图像的去噪,包含lee滤波器,frost滤波器,kuan滤波器,并且自己编写的信噪比函数(SAR image denoising, including lee filter, frost filter, kuan filter, and I have written a function of SNR)
- 2020-10-20 21:07:24下载
- 积分:1
-
sambhare
说明: matlab编写的纹理图像分割 gussian滤波后k-means聚类 并将不同区域用线条表示出来(Matlab prepared texture image segmentation, Gussian filtering, K-means clustering and different regions are represented by lines)
- 2021-03-04 12:39:32下载
- 积分:1
-
mCh19
matlab图像处理,improfile函数的运行界面(灰度图)与运行结果(灰度图),improfile函数的运行界面(RGB图)及运行结果···(matlab image processing, improfile function to run interface (grayscale) and the running results (grayscale), improfile function to run interface (RGB Chart), and running results)
- 2009-09-28 10:46:46下载
- 积分:1
-
RingCorrection
该Matlab程序能够去除CT扫描得到的图像的环形伪影(The Matlab program is capable of removing ring artifacts from images obtained by CT scans)
- 2020-12-12 10:39:18下载
- 积分:1
-
matlabtuxiangchuli222
matlab的关于图像处理的一些简单源代码,大家可以试一试,欢迎下载(Matlab on image processing some simple source code, you can try downloading welcome)
- 2006-11-27 22:49:00下载
- 积分:1
-
.zip
对场景分类和语义特征稀疏化的高层图像表示(Object Bank: A High-Level Image Representation for Scene
Classification & Semantic Feature Sparsification)
- 2013-10-16 14:57:56下载
- 积分:1
-
matlabPS
寻找照片PS痕迹的代码~大作业编写~可主要用于寻找添加图像块的PS边缘痕迹,(find the hint of a photo which has been PS)
- 2020-12-21 17:19:08下载
- 积分:1