-
椭圆拟合
说明: 二值化处理图像,自动拟合椭圆并得到长短轴的大小。(Automatically fit the ellipse and get the size of the long and short axes)
- 2021-04-20 15:28:50下载
- 积分:1
-
CUDA
将传统的串行均值滤波算法修改为基于CUDA的并行的滤波算法(Modify traditional serial mean filtering algorithm based on CUDA parallel filtering algorithm)
- 2020-12-13 21:49:14下载
- 积分:1
-
6s
说明: 遥感图像运用6S工具来进行大气辐射校正处理(Atmospheric Radiation Correction Processing Using 6S Tool for Remote Sensing Images)
- 2019-06-20 18:12:10下载
- 积分:1
-
gmodify
图像畸变校正技术的matlab源代码,涉及到图像的空间变换和灰度插值等技术。(Matlab source code of the image distortion correction technology related to space transformation and grayscale image interpolation technology.)
- 2012-05-27 00:56:18下载
- 积分: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
-
tuxiang
基于混沌理论的Logistic映射数字图像的加密算法,实现图像的置乱(Based on the Chaos Theory of Logistic mapping digital image encryption algorithm, the realization of image scrambling)
- 2009-05-20 19:04:10下载
- 积分:1
-
PanoramicImage
用于图像拼接的素材,可用于全景图拼接。主要是JPG形式,可通过SIFT算法进行处理(Material for image stitching, can be used for panorama stitching. Mainly JPG format, can be handled by the SIFT)
- 2020-11-30 15:39:27下载
- 积分:1
-
可以运行
使用ssd深度学习方法来实现生活中想要识别的目标(Using SSD in-depth learning method to achieve the goals you want to identify in your life)
- 2018-12-17 20:59:11下载
- 积分:1
-
ao2sim.tar
自适应光学仿真软件,希望对大家由帮助!我还没有弄明白原理,希望一起学习(Adaptive optics simulation software, I hope all of you by the help! I have not understood the principle, I hope to learn)
- 2021-04-25 21:48:45下载
- 积分:1
-
CD_Data_Processing
说明: 合成孔径雷达成像算法与实现(仿真代码)
书中光盘所附带的数据处理源码(SAR imaging algorithm and implementation (simulation code))
- 2020-06-17 00:40:02下载
- 积分:1