登录
首页 » Visual C++ » binocular_stereo_measuring

binocular_stereo_measuring

于 2007-09-27 发布 文件大小:697KB
0 125
下载积分: 1 下载次数: 170

代码说明:

  通过两台相机拍摄的立体像对完成对目标的快速实时测量,用于构建道路交通等数据快速采集系统。(Through two three-dimensional camera for the completion of the goal as fast real-time measurement, used to build road traffic, such as rapid data acquisition system.)

文件列表:

双目立体测量
............\CameraView.cpp
............\CameraView.h
............\ChildFrm.cpp
............\ChildFrm.h
............\EditPoint.cpp
............\EditPoint.h
............\font.cpp
............\font.h
............\FrameSet.cpp
............\FrameSet.h
............\ImageGoto.cpp
............\ImageGoto.h
............\Img.h
............\MainFrm.cpp
............\MainFrm.h
............\MFCMDI.APS
............\MFCMDI.clw
............\MFCMDI.cpp
............\MFCMDI.dsp
............\MFCMDI.dsw
............\MFCMDI.h
............\MFCMDI.ncb
............\MFCMDI.opt
............\MFCMDI.plg
............\MFCMDI.rc
............\MFCMDI.sln
............\MFCMDI.vcproj
............\MFCMDIDoc.cpp
............\MFCMDIDoc.h
............\MFCMDIView.cpp
............\MFCMDIView.h
............\OpenGLView.cpp
............\OpenGLView.h
............\Points.cpp
............\Points.h
............\ReadMe.txt
............\res
............\...\after_drag.cur
............\...\before_drag.cur

............\...\cur00001.cur
............\...\cur00002.cur
............\...\cur00003.cur
............\...\cursor1.cur
............\...\icon1.ico


............\...\MFCMDI.rc2

............\...\panel_disable.bmp
............\...\panel_enable.bmp
............\...\point1.cur
............\...\Toolbar.bmp
............\...\toolbar1.bmp
............\...\tree.jpg
............\resource.h
............\SFrameWnd.cpp
............\SFrameWnd.h
............\StdAfx.cpp
............\StdAfx.h

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • disparity2007
    利用SIFT检测两图片的相同点,并获取两幅图像的视差。(SIFT detection using the same picture two points, and to obtain two images of the parallax.)
    2021-05-16 18:30:07下载
    积分:1
  • 雷达目标高分辨距离的特征提取及识别方法
    合成孔径雷达目标的特征提取及其识别技术。国防科大写的!(synthetic aperture radar target feature extraction and recognition technology. Written by which this university!)
    2005-07-29 20:31:31下载
    积分:1
  • Three-dimensional-algorithm
    关于MC三维重建算法的二义性消除的文章,很好的消除了MC算法中的二义性(it s the article about Three-dimensional reconstruction algorithm to eliminate ambiguity in MC)
    2014-01-17 13:19:26下载
    积分:1
  • CODE
    说明:  数字图像处理的常用算法总结,比如,直方图,直方图均衡化,均值滤波,中值滤波,平滑滤波等。(Commonly used digital image processing algorithms summarized, for example, histogram, histogram equalization, mean filtering, median filtering, filtering and so on.)
    2011-04-14 21:53:09下载
    积分:1
  • gesture-system
    目前已有的手部运动跟踪系统大多在一定程度上限制了人体运动自由. 基于此, 提出一种无线、 可穿戴、 无障碍的腕关节、 指关节运动跟踪系统. 在人体每个手指甲上粘贴一轻小永磁体, 用以产生标示腕关节、指关节运动的信号 若干磁传感器置于手腕处的电子腕带上, 作为标示信号( 磁信号) 检测器. 当腕关节、 指关 节运动时, 永磁体在各传感器所在位置处的合成磁场发生变化, 传感器对该磁场信号进行测量, 所检测到的磁场信号送入手部姿势估计器, 估计器基于系统数学模型计算手部姿势, 从而实现对手部运动的跟踪.(Most of the existing hand movement tracking system to a certain extent limited the freedom of human motion. This paper presents a wireless, wearable, accessible wrist, knuckles motion tracking system. In each fingernail on the human body Paste a light small permanent magnet to produce marked the wrist, referring to the signal of the joint movement the number of magnetic sensors placed in the wrist at the electronic wristband, as marked signal (magnetic signal) detector. when the wrist, knuckles campaign , the permanent magnet in the magnetic field of the sensor location at changes in the sensors of the magnetic signal measurement, the detected magnetic field signal sent from the start with the Ministry of posture is estimated, the estimator based on the mathematical model to calculate the hand position in order to achieve of hand movement tracking.)
    2020-06-30 07:40:02下载
    积分:1
  • the-Algorithm-of-fire-detection
    推荐火灾检测的参考文献,有火焰多个特征提取的算法。(the article is about how to detect fire,using many algorithms to get the features of fire.)
    2013-03-26 15:01:04下载
    积分:1
  • DFT-DCT
    说明:  基于VC++的图像的DFT变换和DCT变换,并可实现两者间的对比转换(VC++ based on the image of the DFT transform and DCT transform, and to achieve the contrast between the two conversion)
    2021-02-15 10:09:48下载
    积分:1
  • bilateralFilter
    说明:  平台基于visual studio2015,使用opencv函数实现双边滤波,进行图像处理(bilateral Filter based on opencv)
    2020-06-20 05:00:01下载
    积分: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
  • DyBMPMovie
    实现“动态”的位图动画,VC++经典编程学习源码,很好的参考资料。(The realization of "dynamic" bitmap animation, VC++ classic learning programming source code, a good reference.)
    2013-11-25 12:37:28下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载