-
VisualSFM_windows_cuda_64bit
说明: 很好用的三维重建软件,VisualSFM软件允许上传一系列图像,它从这些图像中找到每一个图像的特定特征,利用这些特征信息重建出3D模型的稀疏点云,而后还可进行稠密点云重建。(The VisualSFM software, a good 3D reconstruction software, allows uploading a series of images. It finds the specific features of each image from these images, and USES these feature information to reconstruct the sparse point cloud of the 3D model, and then it can reconstruct the dense point cloud.)
- 2019-05-16 16:00:52下载
- 积分:1
-
differential-operation
实现图像的滤波、锐化、边缘检测、微分处理及图像平滑(Image filtering, sharpening, edge detection, differential processing and image smoothing)
- 2013-02-27 21:00:36下载
- 积分:1
-
gaosi
二维图形图像处理,高斯平滑的源代码,图像预处理(Two-dimensional graphic image processing, Gaussian smoothing of the source code, image preprocessing)
- 2009-11-18 15:32:39下载
- 积分:1
-
salt-and-pepper-
halcon代码 ,对图像添加高斯噪声 椒盐噪声(halcon code, add the image Gaussian noise impulse noise)
- 2015-06-29 10:40:11下载
- 积分:1
-
QMcoder
这是我研究生期间,用QM Coder做图像和图片压缩的源代码。希望能帮助大家(This is the QM Coder for video/image compression. Hopefully, it will be useful for you. )
- 2020-09-20 22:37:52下载
- 积分: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
-
tss_filterh
fpga实现图象滤波,实时的实现现对输入图象的形态学滤波可直接使用。
(fpga image filtering, real-time implementations currently morphological filtering of the input image can be used directly.)
- 2012-10-07 00:29:30下载
- 积分:1
-
SURF-V1.0.9-WinDLL
SURF算法较SIFT算法速度快,SURF算法源代码。(SURF code)
- 2021-04-21 22:48:49下载
- 积分:1
-
CCD-
采用National Instruments 视觉算法库,雷赛运动控制卡,映美精相机 检测手机LOG(Using National Instruments vision algorithms library, Lemire motion control card, Imaging camera detects the phone LOG)
- 2015-03-25 14:49:56下载
- 积分:1
-
Wavelet
Visual C++下的小波变换,小波分解与重构,加入噪声分析,显示分解和重构图形。(Wavelets for data encode and uncode, the figures would be shown.)
- 2009-04-09 21:55:21下载
- 积分:1