-
cvpr01_zollei1109
医学图像配准,医学图像2D_3D配准,基于vc++开发。(The registration of pre-operative volumetric datasets to
intra-operative two-dimensional images provides an im-
provedway of verifying patient positionandmedical instru-
ment location. In applications from orthopedics to neuro-
surgery, it has a great value in maintaining up-to-date in-
formation about changes due to intervention. We propose a
mutual information-based registration algorithm which es-
tablishes the proper alignment via a stochastic gradient as-
centstrategy. Ourmaincontributionliesinestimatingprob-
ability density measures of image intensities with a sparse
histogrammingmethodwhichcouldlead to potentialspeed-
up over existing registration procedures and deriving the
gradient estimates required by the maximization procedure.
Experimental results are presented on fluoroscopy and CT
datasets of a real skull, and on a CT-derived dataset of a
real skull, a plastic skull and a plastic lumbar spine seg-
ment.)
- 2014-09-09 16:29:28下载
- 积分:1
-
1
说明: 双目视觉导航的文章,介绍了CCD标定,图像匹配,三维重建等关键技术(TE PLEASE DOWNLOAD IT )
- 2015-02-11 01:56:24下载
- 积分:1
-
las_tools
一个非常实用的las文件处理工具,可以实现很多功能,如读写las文件,分类,分块,抽稀,合并,生成边界线,生成DEM,点云高度归一化,数据格式转换,波形数据压缩等(A very useful the las file processing tools, you can achieve a lot of features, such as read and write las file classification block Rarefy merge to generate the boundary line, generated DEM point cloud height normalized data format conversion, waveform data compression, etc.)
- 2021-01-24 20:58:38下载
- 积分: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
-
colouredgedetection
对灰度和真彩色位图实现了多种边缘提取算法(Of gray-scale and true color bitmaps to achieve a variety of edge detection algorithm)
- 2007-09-09 21:53:10下载
- 积分:1
-
Huffman
完成流程编码和huffman编码,适合做图像编码的熵编码,只要调整接口就好。(Complete the process encoding and huffman coding, image coding suitable for entropy coding, as long as the adjustment of the interface is like.)
- 2010-12-24 12:00:13下载
- 积分:1
-
BoundaryDetectionVc++Res
图像处理中的边缘检测以及曲线拟合的结合应用,实现边缘连接和线段拟合源码(image processing edge detection and curve fitting combination of applications, connectivity and edge line fitting FOSS)
- 2007-01-01 19:08:58下载
- 积分:1
-
hahamirror2
完成图片的哈哈镜效果,如三角形,圆形,波浪形,弯曲等等(change the picture to any shape you want)
- 2012-04-18 14:55:47下载
- 积分:1
-
decomb522src
一个经典的动态视频图像去隔行处理的源代码,能消除双场图像的场效应(A classic dynamic de-interlacing video processing source code, to eliminate dual-field image of the field-effect)
- 2020-08-14 16:58:27下载
- 积分:1
-
ImageProcess
c#写的图像处理程序框架,包括打开图片、保存、关闭等功能。图像处理包括图像增强里用到的灰度化、亮度增强、线性非线性平滑、一阶二阶锐化等。(c# write image-processing program framework, including open images, save, close and other functions. Image processing including image enhancement is used inside the gray-oriented, brightness increased, the linear non-linear smoothing, sharpening and so on a first-order second-order.)
- 2009-10-22 10:19:21下载
- 积分:1