-
ex
运行程序,得到不同伽马因子给图像的整体明暗程度带来的变化(Run the program to get the change of the overall brightness of the image with different gamma factors)
- 2019-03-18 15:15:54下载
- 积分:1
-
global-threshold-denoising-1
小波图像去噪,全局阈值法,是多阈值小波去噪中两大部分:全局阈值法玉局部阈值法的重要组成部分。(Wavelet denoising, the global threshold method, the multi-threshold wavelet de-noising of two parts: the global threshold method jade local threshold an important part of the law.)
- 2012-06-19 18:10:44下载
- 积分:1
-
mapx开发 放大缩小地图 例子
实现简单的mapx开发,放大缩小地图等功能
- 2015-04-10下载
- 积分:1
-
curvature
求解一个图像的曲率,程序完整,正确,可以用于图像处理(Solving an image of the curvature, the program complete, correct, can be used for image processing)
- 2011-10-27 11:01:06下载
- 积分: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
-
人体三维重建
本案例是对人体医学断层切片的三维重建。这里的医学断层切片使用的是CT,重建的是人体躯干。(Three dimensional reconstruction of sectional slices of human medicine)
- 2020-07-16 01:38:49下载
- 积分:1
-
matlabsoftware
该软件包含了超声图像中各种滤波算法的matlab程序。(Despeckle filters)
- 2009-09-28 14:50:38下载
- 积分:1
-
相位配准
利用相位相关法对图像进行配准,配准精度可达到0.01(The registration accuracy can reach 0.01 by using phase correlation method.)
- 2021-01-04 10:18:55下载
- 积分:1
-
去噪评价指标ENL, SSIM, PSNR,SNR,EPI
图像去噪的评价指标ENL, SSIM, PSNR,SNR,EPI(The evaluation indexes of image denoising are ENL, SSIM, PSNR,SNR and EPI)
- 2021-04-18 01:08:52下载
- 积分:1
-
vtk建立三维模型
vtk建立三维模型
- 2015-01-01下载
- 积分:1