-
Y824793[1].zip
PACS系统的图像浏览软件的分析与设计 硕士学位论文 DICOM通讯(PACS system, image viewing software analysis and design of a master' s degree thesis DICOM communication)
- 2011-01-04 20:28:04下载
- 积分:1
-
vb6findpcitureSearchPicture
vb仿大漠屏幕找图,速度极快 屏幕找色点 图像查找visualbasic vb6找图(VB,VB6,VISUAL BASICK ,FIND PICTURE ,QUICK SEARCH IMAGE.SEARCH PICTURE)
- 2014-11-05 09:51:32下载
- 积分:1
-
modeling_a_city
该文档描述了如何使用sketchup制作3D模型,并上传到google的3D仓库。(This document describes how to create 3D models using sketchup and uploaded to google' s 3D warehouse.)
- 2011-06-02 02:05:40下载
- 积分:1
-
demo
本程序包括图像的几何变换、图像的灰度变换、图像的空域增强、图像的频域增强、图像的形态学处理、图像的分割和区域增长、还有图像的数字识别等一系列有关图像的基本操作和处理。(This procedure including the image geometric transform, the image gradation transformation, the image air zone strengthens, the image frequency range to strengthen, image morphology processing, the image division and the region grows, also has the image digital recognition and so on a series of related image elementary operation eo and processing.
)
- 2011-11-10 17:43:10下载
- 积分: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
-
LineTrans
说明: 该程序实现的功能是:图像反色,线形变换,对于图像处理初学者非常实用。(The realization of the program)
- 2008-11-11 16:35:10下载
- 积分:1
-
2DFFT-IFFT
这是我做的一个二维傅里叶变换的程序,可以对图像进行2DFFT变换得到频谱图,并利用2DIFFT得到原图像(I do a two-dimensional Fourier transform procedure, 2DFFT transform spectrogram image and utilize 2DIFFT original image)
- 2012-12-01 15:56:14下载
- 积分:1
-
bgslibrary_x86_v1.9.2
bgslibrary_x86_v1.9.2,是MFC的实现文件,包含37种背景减除算法,对于做目标提取的研究非常有用。(The BGSLibrary was developed by Andrews Sobral and provides an easy-to-use C++ framework based on OpenCV to perform background subtraction (BGS) in videos. )
- 2015-12-22 20:33:52下载
- 积分:1
-
otsu-canny
基于otsu的自适应阀值canny边缘检测(adaptive canny edge detection based on otsu)
- 2020-06-27 02:00:02下载
- 积分:1