-
sift
提取SIFT特征点,配准拼接的代码,能运行(detect sift features)
- 2014-06-27 10:54:41下载
- 积分:1
-
shadow-removal
收集的一些关于阴影去除的论文,对于做阴影去除的学者来说有用,至少可以节省论文的查阅时间(Collected a number of papers on the shadow removal, useful for scholars to do shadow removal, at least you can save paper inspection time)
- 2012-11-01 11:55:52下载
- 积分: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
-
fjj车型识别结合盒维数和小波分解重构等
说明: 本程序是基于小波和盒维数的车型识别程序,可以选择不同车型,有GUI界面,有图片,有程序,能运行,相信初学者一定能够获益。(This program is based on the wavelet and box dimension of the vehicle type recognition program, you can choose different models, GUI interface, pictures, programs, can run, I believe beginners will benefit.)
- 2019-10-04 17:31:34下载
- 积分:1
-
Programs
完整的图像处理程序,完成基本的图像处理功能,如,各种二值化算法的实现,图像边缘检测,图像分割,降噪等。其中有车牌识别实例。(Complete image processing program, the completion of the basic image processing functions, such as, a variety of value of implementations of the algorithm, image edge detection, image segmentation, noise reduction. License plate recognition instance.)
- 2013-01-30 15:41:10下载
- 积分:1
-
去除图像的噪点
图像去噪,去除图像的噪点
图像去噪,去除图像的噪点(Image Denoising)
- 2011-09-25 19:47:35下载
- 积分:1
-
瞳孔定位
matlab实现人眼精确定位 实现效果良好(Accurate eye location by MATLAB)
- 2021-04-07 21:39:01下载
- 积分:1
-
asp.net 用dotnetcharting控件生成柱形图、饼形图、折线趋势图
实例中的dotnetCHARTING.dll 文件即是 dotnetcharting控件,饼形图、柱形图等详见 核心代码部分 这是官方网址: http://www.dotnetcharting.com/
- 2013-05-08下载
- 积分:1
-
DIP-toolbox-matlab
数字图像处理matlab工具箱,包含彩色图像分割,RGB分量提取等基本源程序(Digital image processing toolbox matlab)
- 2011-09-14 16:43:13下载
- 积分:1
-
kmeans
K均值图像分割,读入彩色图片,输出区域分割后的图片(K-means image segmentation, read full-color photographs, the output image after the region segmentation)
- 2008-08-14 11:08:57下载
- 积分:1