-
OpenCVFaceDetectDirectShow小波图像分割算法
说明: OpenCV FaceDetectDirectShow小波图像分割算法(Wavelet image segmentation algorithm)
- 2020-06-17 05:20:01下载
- 积分:1
-
ColorAttentuationPriorDehazing
基于颜色衰减先验模型的单幅图像快速去雾算法。(A Fast Single Image Haze Removal Algorithm using Color Attenuation Prior)
- 2021-03-08 18:49:28下载
- 积分:1
-
SAR
SAR多普勒成像算法matlab实现以及逆合成孔径雷达回波信号成像(Matlab implementation of SAR Doppler imaging algorithm and echo signal imaging of inverse synthetic aperture radar)
- 2017-11-15 16:59:51下载
- 积分:1
-
RedpiniPhone
室内定位的源码,基于指纹定位的算法,把指纹存储在数据库在,然后在在线阶段根据收到的wifi信号,蓝牙信号,手机基站信号作为一个向量与数据库中存储的指纹匹配,匹配距离最短的就是指纹数据对应的位置(Indoor positioning source, location-based fingerprint algorithm, fingerprint stored in the , then in the online stage according wifi signal, Bluetooth signals, cell phone base station signals received as a vector in the matches the stored fingerprint, matching the shortest distance is a position corresponding to the fingerprint data)
- 2015-08-03 19:43:06下载
- 积分:1
-
ostu
经典的图像分割算法ostu,去两峰值之间的峰谷为阀值(Classical image segmentation algorithms ostu, to the peak and valley between two peaks as the threshold)
- 2007-10-24 11:33:47下载
- 积分: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
-
Icb__Spectruut
用Visual C编的用于语音的频频谱的检测,能显示出来语音的频谱图。
(Visual C series of the spectrum for voice detection, displayed the frequency spectrum of the voice.)
- 2012-07-26 22:36:07下载
- 积分:1
-
random forest
说明: 利用R语言编程实现高光谱遥感的随机森林分类(Random Forest Classification Based on Hyperspectral Remote Sensing Using R Language Programming)
- 2019-02-28 10:13:01下载
- 积分:1
-
SIFT
针对大尺度图像配准和不同传感器图像配准问题, 介绍了一种基于 SIFT 的图像配准方
法。(For large-scale image registration and image registration problem from different sensors, introduces a SIFT-based image registration method.)
- 2013-07-18 15:13:18下载
- 积分:1
-
compressive-sensing
关于图像分块压缩感知,及测量矩阵加权的三篇文章(Three articles on the image block compressed sensing, and measurement matrix weighted)
- 2012-03-29 10:49:59下载
- 积分:1