-
SAR
以MSTAR为实验数据,对SAR影像进行杂波统计分析研究。利用高斯、瑞利、对数正态、LN、gamma函数模型对其拟合,通过K-S方法检验拟合精度(The MSTAR the experimental data, statistical analysis of SAR images of clutter. Gaussian, Rayleigh, lognormal, LN, gamma function model to its fitting, fitting by means of checking the accuracy of KS)
- 2012-01-09 10:56:18下载
- 积分:1
-
43659358Matlab-GUI--for-Image-Segmentation--
说明: 基于MATLAB GUI的图像处理界面,包括基本的图像处理功能(Graphical interface construction based on image processing)
- 2019-04-23 17:27:02下载
- 积分:1
-
ICP-point-cloud-registration
三维激光点云配准是点云三维建模的关键问题之一。经典的 ICP 算法对点云初始位置要求较高且配准
效率较低,提出了一种改进的 ICP 点云配准算法。该算法首先利用主成分分析法实现点云的初始配准,获得较好
的点云初始位置,然后在经典 ICP 算法的基础上,采用 k - d tree 结构实现加速搜索,并利用方向向量夹角阈值去除
错误点对,提高算法的效率。实验表明,本算法流程在保证配准精度的前提下,显著提高了配准效率。
(Three-dimensional laser point cloud registration is one of the key three-dimensional point cloud model. High classical ICP algorithm to the initial position of the point cloud registration requirements and low efficiency, proposed an improved ICP point cloud registration algorithm. Firstly, the use of principal component analysis of the initial point cloud registration, get a better initial position of the point cloud, then the basis of classical ICP algorithm using k- d tree structure to achieve speed up the search, and using the direction vector angle the removal of the threshold point error and improve the efficiency of the algorithm. Experiments show that the algorithm processes to ensure the accuracy of registration under the premise, significantly improve the efficiency of registration.)
- 2016-08-01 10:34:57下载
- 积分:1
-
MATLAB-CODE
matlab 实现暗通道去雾算法 根据cvpr论文改编(matlab channel to achieve the dark fog adaptation algorithm based on cvpr papers)
- 2011-08-22 08:52:27下载
- 积分:1
-
Lucas_Kanade
一个运动估计运算的MATLAB文件,本人已经测试过,非常有用。(A motion estimation MATLAB file operations, I have been tested, very useful.)
- 2008-08-15 13:34:30下载
- 积分:1
-
3
说明: 多种图像去雾算法(何晓明暗通道去雾,基于中值滤波去雾,基于均值滤波去雾,基于导向滤波去雾,多色彩空间去雾)(A variety of image defogging algorithm (Xiaoming dark passage to fog, based on median filter to fog, defogging based on mean filter, filter-based guide to the fog, multi-color space to fog))
- 2016-02-28 15:27:53下载
- 积分:1
-
拟合测量
说明: E:
- 2019-01-10 23:33:57下载
- 积分: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
-
AffineTrnasformation
说明: 这是我编写的关于计算机视觉中的一种重要的变换---射影变换的matlab源代码,希望对您有用。(This is what I prepared on computer vision in an important transformation of the projective transformation--- matlab source code, I hope useful for you.)
- 2009-08-07 12:05:29下载
- 积分:1
-
内窥镜图像增强
说明: 内窥镜图像的细节增强和亮度增强算法,适用于胃部图像处理(Endoscopic image detail enhancement and brightness enhancement algorithm for stomach image processing)
- 2021-05-14 00:30:02下载
- 积分:1