-
medicalimageregistration
本书详细介绍了医学图像注册方面的知识,包括配准的原理、刚性配准、非刚性配准,对于医学图像处理方面的研究具有很重要的参考价值。(The book details the registration of medical image information, including the principle of registration, rigid registration, non-rigid registration for medical image processing research has important reference value.)
- 2009-07-20 23:30:32下载
- 积分:1
-
Vssamps
vssamp算法,图像变步长自动匹配重构重构算法,基于samp算法,更快速有效的重构复杂图像(vssamp variable step size image reconstruction algorithm automatically matches reconstruction, samp algorithm based on more quickly and efficiently reconstruct complex images)
- 2021-04-03 15:29:06下载
- 积分:1
-
InversePerspectiveMapping
对输入的图像帧感兴趣区域进行逆透视投影变换,得到俯视图。(The input of the image frame of interest in the area of the inverse perspective projection transform, get a top view.
InversePerspectiveMapping)
- 2016-12-04 21:31:56下载
- 积分:1
-
san-zhen-cha-fen
三帧差分法,绝对可用,matlab实现,里面有视频和结果图。如果程序出错误,可用先把result.avi删除,在做测试、(Three difference method, absolutely free, matlab realize, there are videos and results map. If the program is an error that can be used to delete first result.avi while doing the test,)
- 2013-05-31 13:41:05下载
- 积分:1
-
Matlab code for CS reocvery
压缩感知 图形图像 图像处理 数据恢复 代码(Data recovery of compressed sensing image image processing)
- 2018-01-31 21:01:31下载
- 积分:1
-
MEMotionEstimation1
MATLAB做的运动估计,用于图像处理中运动轨迹追踪(仅供大家参考)(motion estimation by matlab, for motion tracking in digital image processing)
- 2009-07-07 16:44:48下载
- 积分:1
-
Project_report
Image Inpainting for object removal project report
- 2014-01-07 18:52:08下载
- 积分:1
-
Saliency
上下文意识的显著性检测,包含matlab代码和对应的CVPR2010论文。(It contains the paper Context-Aware Saliency Detection from CVPR2010 and it s matlab code. )
- 2012-04-19 09:12:14下载
- 积分: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
-
SVMZZ
SVM进行图像分割 使用OTSU阈值法 效果很好 分割出来直接是二值图像(SVM for image segmentation using the OTSU thresholding method works well split up directly from the binary image)
- 2013-01-08 17:07:15下载
- 积分:1