-
ship
船舶数据处理程序,可以实现船舶任意运动姿态的数据,描绘运动轨迹,从而分析船舶运动姿态(ship data extraction)
- 2020-08-31 19:28:11下载
- 积分:1
-
ImageTool
图像处理 二值化 旋转 90 180 等,支持多种 图片(图像处理 二值化 旋转)
- 2012-05-04 15:26:20下载
- 积分:1
-
Wavelet-transform-image
图像分割处理的小波变换算法源代码,使用vc++(Wavelet transform image segmentation algorithm source code vc++)
- 2012-03-25 13:55:21下载
- 积分:1
-
ballalongline
小球沿斜线运动,可以扩展到其他程序中,第一次上传,谢谢。(a ball along with a line.)
- 2013-11-17 20:53:20下载
- 积分:1
-
motiontrack
运动目标的给总与识别,可以实时显示目标的运动轨迹,支持高速相机实时处理视频数据,并可以获得运动目标的轮廓矩等信息(Moving target to the total and the identification of moving targets in real-time display track, real-time processing to support high-speed video camera and moving target access to information such as contour moments)
- 2020-10-06 00:17:39下载
- 积分:1
-
abc
数字图象处理VC++实现,里面有很多图像处理方面的算法,有参考意义。(Digital image processing in VC++)
- 2011-11-21 20:33:31下载
- 积分:1
-
Tamura纹理特征提取及应用的matlab代码 TTamura Textua
Tamura纹理特征提取及应用的matlab代码,附有介绍绍Tamura纹理的文献和测试用图片。,已通过测试。
(Tamura texture feature extraction and application of the Matlab code, accompanied by Shao Tamura texture literature and test pictures. , Has been tested.)
- 2012-06-09 11:36:52下载
- 积分:1
-
KMeans-with-opencv
k均值分类在遥感影像中的应用,完整的c++代码,注释详细易懂,并且已经验证过(k-means classification in remote sensing images in the application, complete c++ code, comments, detailed and easy to understand, and have been verified)
- 2021-01-24 20:28:37下载
- 积分: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
-
9.SAD-StereoMatching
双目立体匹配,使用SAD,SSD,NCC算法,比较多种常见算法的优劣,对其优化实现快速准确匹配。(Binocular stereo matching, the use of SAD, SSD, NCC algorithm, compare the merits of a variety of common algorithms, and its optimization to achieve fast and accurate matching)
- 2016-08-30 16:13:14下载
- 积分:1