-
KLTpointmatch
KLT point match:Detection and Tracking of Point Features.
- 2007-10-09 09:24:19下载
- 积分:1
-
zernikeCT
此程序为泽尼克的方法拟合离散点的数据,用于图像处理。(Zernike parameter fitting)
- 2013-11-16 19:55:34下载
- 积分:1
-
Kkkllt134L
非常好的klt算法的事例程序源码,大大家多多下在亚,谢谢大家乐
(Very good klt algorithm example program source code, large lot next in Asia, and thank you for music)
- 2012-08-29 22:42:49下载
- 积分:1
-
Openimagefile
在文档下打开一个位图文件,重新绘制,放大并使其二值化显示,()
- 2007-08-29 23:23:41下载
- 积分:1
-
Smooth
对图像进行平滑处理,像各种滤波的方法,如均值滤波法、中值滤波法(Smoothing the image, like the various filtering methods, such as mean filtering, median filtering method)
- 2010-07-16 13:17:31下载
- 积分:1
-
CTImageReconstruction
ct图像重建系统,本程序需要先安装和配置好vtk环境才能编译并以命令行方式运行。(ct image reconstruction system, the program you need to install and configure vtk environment to compile and run the command line.)
- 2015-12-15 17:21:08下载
- 积分:1
-
weighted-least-squares-filter
基于加权最小二乘最优化框架的滤波器。可用于实现图像的分层编辑。(Weighted least square)
- 2021-04-22 10:28:48下载
- 积分: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
-
ellipsefitting
输入一组数据,xy值,用来拟合椭圆。只要改变输入数据,该代码就可以直接使用。另附上椭圆拟合算法。(Enter a set of data, xy values, used to fit ellipses. Just change input data, the code can be used directly. Attached on the ellipse fitting algorithm.)
- 2010-11-15 14:56:43下载
- 积分:1
-
imagematch
图像匹配程序,原理清晰,算法明确,功能全面(Image matching procedures, the principle of clarity, the algorithm clear, full-featured)
- 2008-02-18 13:57:05下载
- 积分:1