-
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
-
yudp
运动目标检测与跟踪,包括目标定位,匹配与跟踪!(moving target detection and tracking, including Target, matching and tracking!)
- 2020-06-26 05:20:01下载
- 积分:1
-
Morph
用Visual C++实现基于数学形态学的数字图像处理,包括二值图像的腐蚀,膨胀,开,闭,细化及中轴变换等运算.(Visual C++ using mathematical morphology-based digital image processing, including binary image erosion and dilation, opening, closing, thinning, and the central axis transform operations.)
- 2011-11-08 16:34:42下载
- 积分: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
-
yj
说明: :针对显微图像分析、识别需要的全自动控制显微镜,研究开发其相应的图像处理算法。提
出了能量谱自动聚焦评价函数算法、自适应选取基准图的图像拼接算法、改进 Laplacian算子的多层
聚焦图像叠合算法等。该算法模块已成功地应用于所开发的CMIAS 显微医学图像分析系统中,取得
了满意的应用效果。(【ABSTRACT】For the automatic microscope required by micro-image analysis and recognition, the
relevant image processing a lgorithms are investigated. Three algorithms are described: energy-spectrum
image auto focusing evaluation function, image merging based on the adaptive selection of standard image
and sum-modified-Laplacian (SML) operator for multi-focus image fusion. The algorithms have been
applied successfully to CMIAS medical micro-optical image analysis system and testified to be feasible
and effective. )
- 2009-11-05 10:02:07下载
- 积分:1
-
weighted-spatial-
多径条件下基于加权空间平滑的阵元幅相误差校正(Multipath based on weighted spatial smoothing array element amplitude and phase error correction)
- 2013-12-12 13:20:38下载
- 积分:1
-
DoG
高斯模糊是一种图像滤波器,它使用正态分布(高斯函数)计算模糊模板,并使用该模板与原图像做卷积运算,达到模糊图像的目的(Gaussian blur filter is a kind of image, it uses the normal distribution (gaussian function) to calculate fuzzy template, and use the template and the original image for convolution operation, achieve the goal of blurred image
)
- 2015-08-13 02:03:24下载
- 积分:1
-
fish_full
实现鱼眼图 圆形视场和全视场的校正、分为2幅图像、4幅图像、任意角度、任意位置的校正、全景图拼接等(Fish eye diagram of a circular field of view and full field calibration is divided into two images, four images at any angle, any position of the correction, and panoramic stitching.)
- 2012-07-11 11:01:10下载
- 积分:1
-
discrete-cosine-transform
图形图像正交变换,离散余弦变换,VC++实现。(Graphic image orthogonal transform, discrete cosine transform, VC++ to achieve.)
- 2010-06-22 08:32:54下载
- 积分:1
-
imageprocessing
Some of image processing tools in visual C++
- 2012-08-22 20:38:42下载
- 积分:1