-
sr
说明: super resolution可实现 很多算法(a lot of super resolution algorithms can be realized)
- 2009-06-30 16:10:23下载
- 积分:1
-
sarMatch
说明: 基于边缘特征的SAR图像与光学图像匹配,测度为Hausdorff距离(SAR images based on edge features and optical image matching, for the Hausdorff distance measure )
- 2020-10-12 09:57:32下载
- 积分:1
-
mean-shift
这是基于mean-shift运动目标跟踪的matlab仿真的程序,含有三个M文件(This is based on the mean-shift moving target tracking matlab simulation program, containing three M documents)
- 2008-04-15 17:02:14下载
- 积分:1
-
HALCON四点标定
说明: 手眼标定方法。平面手眼标定,四点标定算法(Hand-eye calibration method. Planar hand-eye calibration and four-point calibration algorithm)
- 2019-09-30 08:28:56下载
- 积分:1
-
变化检测
说明: 利用遥感做变化检测的时候可以用到的数据。(Data Used in Change Detection Using Remote Sensing)
- 2020-11-05 11:29:50下载
- 积分:1
-
Log_gabor
很好用的Log-Gabor变换源代码,可以用于图像的特征提取(Good use of Log-Gabor transform source code, can be used for image feature extraction)
- 2009-03-14 13:14:30下载
- 积分: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
-
bgs_track.cpp
Tracking based on background subtraction
- 2013-09-26 18:20:35下载
- 积分:1
-
GMM
本代码建立高斯混合模型(高斯多模型)(GMM),将其用于计算机视觉领域的视频目标检测/视频监控/运动检测/运动目标检测/视频目标跟踪等相关应用中。(This code sets up Gaussian mixture model(Gaussion Mixture Model, GMM) with image sequences for the research and application field of computer vision, using GMM for visual object detection(video object detection), visual surveillance, motion detection, motion tracking, visual object tracking, video object tracking, etc.)
- 2011-01-14 10:21:54下载
- 积分:1
-
Ext-2
可以在程式畫面上任意畫圖寫字並且可清除再任意使用(Can any drawing program screens and write and to clear any longer use)
- 2012-09-02 17:38:10下载
- 积分:1