-
Corner
一种带有自适应阈值和动态支持区域的CSS角点检测算法,其效果被认为优于目前所有的CSS角点检测算法和大多数的其他类型角点检测算法。(a curvature scale space corner detector
with adaptive threshold and dynamic region of support, it is considered to be the one of the best corner detection algorithms.)
- 2009-07-20 21:03:45下载
- 积分: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
-
Data_Augmentation
说明: 利用MATLAB对图像进行文件夹中图片进行批量增广(MATLAB is used to enlarge the images in the folder)
- 2020-10-21 13:27:24下载
- 积分:1
-
gac-upwind
gac模型的迎风方案可以实现对灰度图像的分割,分割效果还可以(gac)
- 2010-02-05 23:29:15下载
- 积分:1
-
DSP-digital-Recognition
天津工业大学课程设计,内容包含vs2010对图像的灰度化,二值化,边缘检测。包含单纯c语言编写的对图像的灰度化,二值化,边缘检测的一个.C文件,可以直接用vc6.0运行,也可以直接在DSP上运行,还包含一份详细的设计报告。(Tianjin Polytechnic University curriculum design, content includes vs2010 grayscale image binarization, edge detection. Contains pure c language for image graying, binarization, edge detection is one. C file that can be run with vc6.0 can also be run directly on a DSP, also contains a detailed design report.)
- 2013-12-10 10:51:11下载
- 积分:1
-
划分数据集Kylberg Sintorn
说明: Kylberg Sintorn数据集可用于进行算法的旋转不变测试,然而官网中并没有直接划分训练集与测试集,本代码对该数据集的图片进行重新命名与划分,可用于算法测试中(The Kylberg Sintorn dataset can be used to perform the rotation-invariant test of the algorithm. However, the official website does not directly divide the training set and the test set. This code renames and divides the picture of the dataset, which can be used in algorithm testing)
- 2020-03-26 23:08:41下载
- 积分:1
-
speedyGeneticalgorithm
Speedy GA Graphical analysis
- 2018-03-08 15:01:20下载
- 积分:1
-
SIFTVC6
sift角点检测及匹配,在不同尺度空间下的角点检测方法,很方便实用。(sift corner detection and matching, the corner detection methods under different scales of space, it is convenient and practical.)
- 2013-12-08 17:25:35下载
- 积分:1
-
1
离散傅里叶变换、离散余弦变化、离散小波变换(Discrete Fourier transform, discrete cosine transform and discrete wavelet transform)
- 2018-10-30 10:35:21下载
- 积分:1
-
HVS
人类视觉系统的matlab工具箱,包括亮度掩膜,对比度掩膜和对比度灵敏度函数的实现。是学习人类视觉系统非常好的入门材料。()
- 2008-07-15 10:03:46下载
- 积分:1