-
AreaMeasure
本文件包含连通区域标记以及面积测量的matlab源代码(This document contains the connected component labeling, and area measurement of the source code matlab)
- 2011-06-03 20:45:36下载
- 积分:1
-
matlab
说明: matlab书上第六章数值运算的几个样例习题。。。。。(the descirbtion of the matlab)
- 2019-05-15 19:54:04下载
- 积分:1
-
SAR image
国防科技大学博士周晓光论文-极化SAR图像分类方法研究(Research on polarization SAR image classification method by Dr. Zhou Xiaoguang of National University of Defense Technology)
- 2018-06-05 23:38:47下载
- 积分:1
-
traffic-flow
车流量检测,车流量检测,车流量检测,车流量检测,(traffic flow,traffic flow,traffic flow,traffic flow)
- 2013-05-09 14:41:16下载
- 积分:1
-
softmatting
本文提出了一个关于图像抠图的方法,它的抠图效果不错,而且作者的主页上提供了MATLAB的源码,可以看一下。(This paper presents a method on the image matting, matting it well, and the author' s home page provides a MATLAB source code, you can see it.)
- 2010-11-18 11:13:33下载
- 积分:1
-
TurboPixels
一个非常有用的超像素算法,用于图像分割,文件夹包含文章,采用matlab和c混编(a very useful superpixels algorithm,can be used for image segmentation,the file contatins paper,the matlab and c are mixed for exeution)
- 2013-01-27 11:24:08下载
- 积分:1
-
tuxiang
图像预处理,包括灰度化、图像去噪、灰度变换、阈值分割、边缘检测,形态学处理(image preprocessing)
- 2020-12-10 15:19:18下载
- 积分:1
-
Motion-detection-of-contour-search
基于轮廓来寻找流动部分,效果不是很好,但是还可以拿来用(Based on the outline to find the flow part, the effect is not very good, but also can be used with)
- 2015-11-16 16:33:31下载
- 积分: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
-
KRLS
核自适应滤波算法krls的matlab程序。已将klms算法弄成函数,加载即可使用。(Nuclear adaptive filtering algorithm krls matlab program. Klms algorithm has inflicted function, load can be used.)
- 2021-03-14 19:19:23下载
- 积分:1