-
ERNSYMNTY
基于VisualC_和DCMTK的医学DICOM图像显示与调窗,同时在MFC 下完成鼠标拖动进行窗宽/窗位的调节(Medical image of DICOM VisualC_ and DCMTK display and window based on, at the same time in MFC complete the mouse to drag the window width/window regulator
)
- 2013-08-26 22:03:24下载
- 积分:1
-
efotoSource
摄影测量的一个开源代码,内部含有后方交会、前方交会、相对定向、立体量测、像点匹配等功能源代码。(An Photogrametry open source project, including intersection, relative oriention, stereo measure, image matching source code.)
- 2016-10-04 18:16:47下载
- 积分: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
-
demo
对BMP文件进行图像处理,包括:边缘检测、频域变换、几何变换、图像变换校正、灰度变换、图像编码、平滑和匹配(BMP files for image processing, comprising: an edge detection, a frequency domain transformation, geometric transformation, image transformation correction gradation conversion, image coding, and matching the smooth)
- 2014-01-12 10:17:03下载
- 积分:1
-
image-geometric-transformation
实现图像的几何变换,包括图像的平移、镜像变换、缩放、转置以及旋转。(Achieve geometric transformation of image, including the image translation, image transformation, scaling, transpose and rotation.)
- 2015-07-15 14:30:29下载
- 积分:1
-
bwlabel
说明: vc++调用matlab函数混合编程实现二值图像的区域标记。(vc++ call matlab function Matlab binary image of the regional markers.)
- 2008-10-13 15:39:51下载
- 积分:1
-
count-rice
本程序可以使用图像处理算法对图片进行处理,对于一个含有各种物体的图片,如米粒,可以计算物体的个数。使用前请配置好opencv环境。希望对大家学习图像处理和opencv有所帮助...(This procedure can use the image processing algorithm for processing images for a picture with a variety of objects, such as a grain of rice, can calculate the number of objects. Configured before use opencv environment. We would like to learn opencv image processing and help ...)
- 2009-04-23 16:05:57下载
- 积分:1
-
huatesetu
说明: 利用vc画图,特点是可以画一些有特殊效果的几何图像(use vc drawing, painting features can be some special effects of geometric images)
- 2006-04-14 11:39:57下载
- 积分:1
-
HistogramaOTSU
说明: 分块直方图均衡化处理图像 用户输入分块的x,y方向的分块个数,即可将图形分成各个小块进行直方图均衡化。
大津法处理图形,包括一维大津法和二维大津法的实现
(the realization of the Histogram equalization algorithm.
the realization of otsu algorithm to process the images)
- 2011-04-17 21:52:58下载
- 积分:1
-
MRF_imgSeg
说明: 是马尔可夫图像分割的C++程序,可以用于遥感图像(It's a C++ program for Markov image segmentation, which can be applied to remote sensing images.)
- 2021-03-18 09:09:19下载
- 积分:1