-
1235
主要是用于雷达目标跟踪中的数据融合,有很好的作用(It is mainly used for data fusion in radar target tracking.)
- 2021-04-27 03:58:44下载
- 积分:1
-
disparity2007
利用SIFT检测两图片的相同点,并获取两幅图像的视差。(SIFT detection using the same picture two points, and to obtain two images of the parallax.)
- 2021-05-16 18:30:07下载
- 积分: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
-
NumberRecognize
根据RBM深度网络(Hinton,2006)进行MINST手写文字的分类器的训练,利用训练得到的权值制作了这个小程序,通过这个程序可以看出训练结果对数据集内的测试样本和训练样本都能进行很好的识别,但是对其他的手写字体识别就没有那么好了。(According to RBM depth network (Hinton, 2006) conducted MINST handwritten text classifier training, using the training to get the right value to produce this small program, this program can be seen through the results of the training data set and the training sample test samples are can be well identified, but on the other handwriting recognition is not so good.)
- 2013-10-17 15:55:34下载
- 积分:1
-
jibensanweibianhuan
说明: 可以实现旋转,错切,各种投影图,透视图。是学习三维变换很好的原始参考资料(Can rotate, shear, a variety of projection, perspective. Is to learn the original three-dimensional transform good reference)
- 2020-10-24 16:20:00下载
- 积分:1
-
IMM
IMM交互式对机动目标跟踪,程序写的很完美,包含各种常见的滤波算法(IMM UKF KF)
- 2013-08-24 10:19:56下载
- 积分:1
-
rihua.code
本程序为图像锐化的经典程序,源码里有详细的标注。(the procedures for sharpening images of the classic procedures are detailed source of tagging.)
- 2007-06-04 12:04:49下载
- 积分:1
-
ComputerGraphics
多边形填充 多边形裁剪 自定义多边形区域 自定义裁剪区域(Polygon fill polygon clipping custom polygon area custom crop area)
- 2012-11-14 23:04:40下载
- 积分:1
-
Tclaaheeh
自适应直方图均衡算法,因为是从从局部入手,所以图像增强效果显著。
(Adaptive histogram equalization algorithm, because from the start from the local image enhancement effect is remarkable.)
- 2012-07-23 13:22:08下载
- 积分:1
-
ImageCompression
说明: 给出了一种基于小波分形的图像有损压缩方法.首先,利用小波变换将图像分解为不同频率的分量,然后采用分形迭代函数系统、Huffman树等方法对它们进行编码.实验表明,该算法在保证还原图像质量的情况下,有较高的压缩比.(Image Compression Bassed on Wavelet and Fractal)
- 2009-08-17 22:53:54下载
- 积分:1