-
DCTbook
书上的简单DCT图像处理程序,最基本的DCT,简单,价值低(Book on the simple DCT image processing program, the most basic DCT, simple, low value)
- 2017-04-05 13:01:00下载
- 积分:1
-
图像处理
简单图像压缩处理,正交变化,图像压缩灰度变化(Simple Image Compression Processing, Orthogonal Change, Gray Level Change of Image Compression)
- 2019-04-14 20:53:48下载
- 积分:1
-
ROFdenoise
功能:应用Rudin-Osher-Fatemi模型进行图像去噪,在ROFtest.m 中输入图像,附带文档ROFscheme内容为此模型的数值分析过程,比较详细,适合初学者(Classic Rudin-Osher-Fatemi model denoising, the including documentation is the numerical analysis process of the model in detail, suitable for beginners)
- 2021-04-09 23:28:59下载
- 积分:1
-
基于主成分分析的遥感图像融合算法PCA
基于主成分分析的遥感图像融合算法,融合结果质量较好。(The fusion algorithm of remote sensing image based on principal component analysis has better fusion result.)
- 2018-01-11 17:32:14下载
- 积分:1
-
uv_historgam
利用已知的平坦道路的视差图,得出uv方向的直方图,并且求出直线(The histogram of the UV direction and the straight line are obtained by using the disparity map of the known flat road.)
- 2018-12-31 17:03:01下载
- 积分:1
-
HMarkDemo
说明: 基于Halcon开发的掩模 纯手工编辑(Mask editing based on Halcon)
- 2020-07-02 20:00:02下载
- 积分: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
-
Captionextraction
自己编写的字幕提取代码,matlab简单易用(Caption extraction)
- 2010-02-27 16:48:59下载
- 积分:1
-
QualityGuidedUnwrap2D_r1
基于matlab实现干涉显微镜图像重构中的二维解包裹函数。( QualityGuidedUnwrap2D implements 2D quality guided path following phase
unwrapping algorithm.
Inputs: 1. Complex image in .mat double format
2. Binary mask (optional)
Outputs: 1. Unwrapped phase image
2. Phase quality map
This code can easily be extended for 3D phase unwrapping.
Technique adapted from:
D. C. Ghiglia and M. D. Pritt, Two-Dimensional Phase Unwrapping:
Theory, Algorithms and Software. New York: Wiley-Interscience, 1998.
Posted by Bruce Spottiswoode on 22 December 2008
2010/07/23 Modified by Carey Smith)
- 2020-10-29 11:19:57下载
- 积分:1
-
otsu
说明: 经典的大津otsu算法在matlab中的实现程序,每一步都是经典步骤。(Otsu classical Otsus algorithm in matlab implementation process, each step is the classical steps.)
- 2011-03-08 22:19:50下载
- 积分:1