-
Qass
源码用于计算不同的重建图像方法得到图像的质量评估检测(Source used to calculate the different image reconstruction methods to assess the quality of the image detection)
- 2020-11-10 15:19:46下载
- 积分:1
-
lyc_sst_monthly_gif
说明: 基于MATLAB,对逐日的sst遥感数据做月平均并制作gif动图(Based on MATLAB, the daily SST remote sensing data are averaged monthly and the GIF map is made)
- 2021-03-02 11:13:36下载
- 积分:1
-
shadow-removal
非常全面介绍了阴影检测算法以及如何去除阴影的算法,基本涵盖了该领域的所有知识点。(Is a comprehensive introduction to the shadow detection algorithm and how to remove the shadow of the algorithm, covering all the knowledge in the field point.)
- 2011-09-02 00:33:02下载
- 积分:1
-
mygvf
自己设计的GVF模型图像分割程序,改进了初始轮廓的选择方法,快速分割。(GVF model designed image segmentation process to improve the initial outline of the selection method, rapid division.)
- 2009-05-19 19:21:58下载
- 积分: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
-
CFAR
用恒虚警算法CFAR实现海面sar图像目标检测的matlab代码(With the constant false alarm algorithm CFAR implementation to the surface of the SAR image target detection of matlab code
)
- 2021-04-25 22:08:46下载
- 积分:1
-
xiangweixiangguan
关于相位相关的算法,用于配准,有些可以达到亚像素(on phase correlation algorithm for registration, and some can reach sub-pixel)
- 2016-05-11 18:07:17下载
- 积分:1
-
6
说明: [Wang 2011]The Meaning of Interior Tomography
- 2013-10-31 23:02:32下载
- 积分:1
-
threshold
一些阈值图像分割算法:迭代法;局部阈值;otsu;最大熵法等 (Some threshold image segmentation algorithm: the iterative method local threshold otsu maximum entropy method)
- 2013-07-31 21:56:09下载
- 积分:1
-
变化检测
利用遥感做变化检测的时候可以用到的数据。(Data Used in Change Detection Using Remote Sensing)
- 2020-11-05 11:29:50下载
- 积分:1