-
bmp_dicom
实现dicom和bmp之间的转换。适合医学图像中的最初学习。(transformation between dicom and bmp image.)
- 2020-06-29 09:00:02下载
- 积分:1
-
fenqusuanfa
数字全息分区算法模拟,用于从一副同轴全息图中恢复出物体的像(digital holography)
- 2021-04-18 16:38:52下载
- 积分:1
-
imageretrieval
基于颜色的图像检索,采用累积多种距离衡量算法(Color-based image retrieval, using a variety of distance measuring algorithm cumulative)
- 2008-04-23 09:07:25下载
- 积分:1
-
image-inpainting
图像修复,使用曲率方法,热传递。边缘修复非常好,参考某博士论文写。(Image restoration, using the curvature method, heat transfer. Edge of the repair is very good, the reference of a doctoral dissertation.)
- 2011-11-25 15:28:02下载
- 积分:1
-
ksvd-omp
实现稀疏表示算法,以lena图像为例,主要用ksvd和omp算法(The sparse representation algorithm is implemented. The Lena image is taken as an example, mainly using the ksvd and OMP algorithms.)
- 2020-06-28 20:00:01下载
- 积分:1
-
polar-coordinate-transformation
将图像从笛卡尔坐标系上转换到对数极坐标上,这样做便于将笛卡尔坐标系上存在缩放和旋转关系的图像转换成对数极坐标下的具有平移关系的图像,然后就可以用相位相关检测算法进行相关检测,得到两幅图像的相关性(Convert an image Cartesian to polar coordinates on a logarithmic, this facilitates the translation relations image with the next image conversion to a logarithmic scale and rotate relationship exists between the Cartesian coordinates polar coordinates, then you can use phase correlation detection algorithm for correlation detection, the correlation between two images obtained)
- 2021-01-22 15:08:40下载
- 积分:1
-
lans-patrec
从一个模式识别toolbox中摘取的计算zernike不变矩的源代码,结果为图像的n阶m重zernike不变矩(From a pattern recognition toolbox extracted Zernike moment invariants calculation of the source code, the results of image re-n-order m Zernike moment invariants)
- 2008-01-18 11:16:51下载
- 积分: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
-
code
数字图像哈弗曼编码,包括压缩和解压。压缩比、信噪比(Encoded digital image Hafu Man)
- 2020-11-24 20:09:32下载
- 积分:1
-
water_hammer
本程序采用了特征线法计算管道阀门关闭时的水锤(This program uses a water hammer characteristic line method to calculate the pipe when the valve is closed)
- 2020-10-16 10:17:28下载
- 积分:1