资源简介
基于opencv的已知左右图像坐标求空间中三维坐标,以及已知空间坐标求其在左右图像中的二维坐标。
代码片段和文件信息
//opencv2.4.9 vs2012
#include
#include
#include
using namespace std;
using namespace cv;
Point2f xyz2uv(Point3f worldPointfloat intrinsic[3][3]float translation[1][3]float rotation[3][3]);
Point3f uv2xyz(Point2f uvLeftPoint2f uvRight);
//图片对数量
int PicNum = 14;
//左相机内参数矩阵
float leftIntrinsic[3][3] = {4037.82450 0 947.65449
0 3969.79038 455.48718
0 0 1};
//左相机畸变系数
float leftDistortion[1][5] = {0.18962 -4.05566 -0.00510 0.02895 0};
//左相机旋转矩阵
float leftRotation[3][3] = {0.912333 -0.211508 0.350590
0.023249 -0.828105 -0.560091
0.408789 0.519140 -0.750590};
//左相机平移向量
float leftTranslation[1][3] = {-127.199992 28.190639 1471.356768};
//右相机内参数矩阵
float rightIntrinsic[3][3] = {3765.83307 0 339.31958
0 3808.08469 660.05543
0 0 1};
//右相机畸变系数
float rightDistortion[1][5] = {-0.24195 5.97763 -0.02057 -0.01429 0};
//右相机旋转矩阵
float rightRotation[3][3] = {-0.134947 0.989568 -0.050442
0.752355 0.069205 -0.655113
-0.644788 -0.126356 -0.753845};
//右相机平移向量
float rightTranslation[1][3] = {50.877397 -99.796492 1507.312197};
int main()
{
//已知空间坐标求成像坐标
/*Point3f point(700220530);
cout<<“左相机中坐标:“< cout< cout<<“右相机中坐标:“< cout<
//已知左右相机成像坐标求空间坐标
//Point2f l = xyz2uv(pointleftIntrinsicleftTranslationleftRotation);
//Point2f r = xyz2uv(pointrightIntrinsicrightTranslationrightRotation);
Point2f l =(2000 1000);
Point2f r =(10001000);
Point3f worldPoint;
worldPoint = uv2xyz(lr);
cout<<“空间坐标为:“<
system(“pause“);
return 0;
}
//************************************
// Description: 根据左右相机中成像坐标求解空间坐标
// Method: uv2xyz
// FullName: uv2xyz
// Access: public
// Parameter: Point2f uvLeft
// Parameter: Point2f uvRight
// Returns: cv::Point3f
// Author: 小白
// Date: 2017/01/10
// History:
//************************************
Point3f uv2xyz(Point2f uvLeftPoint2f uvRight)
{
// [u1] |X| [u2] |X|
//Z*|v1| = Ml*|Y| Z*|v2| = Mr*|Y|
// [ 1] |Z| [ 1] |Z|
// |1| |1|
Mat mLeftRotation = Mat(33CV_32FleftRotation);
Mat mLeftTranslation = Mat(31CV_32FleftTranslation);
Mat mLeftRT = Mat(34CV_32F);//左相机M矩阵
hconcat(mLeftRotationmLeftTranslationmLeftRT);
Mat mLeftIntrinsic = Mat(33CV_32FleftIntrinsic);
Mat mLeftM = mLeftIntrinsic * mLeftRT;
//cout<<“左相机M矩阵 = “<
Mat mRightRotation = Mat(33CV_32FrightRotation);
Mat mRightTranslation = Mat(31CV_32FrightTranslation);
Mat mRightRT = Mat(34CV_32F);//右相机M矩阵
hconcat(mRightRotationmRightTranslationmRightRT);
Mat mRightIntrinsic = Mat(3
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 80384 2018-11-12 17:44 xyz2uv\Debug\myfirst_opencv.exe
文件 419016 2018-11-12 17:44 xyz2uv\Debug\myfirst_opencv.ilk
文件 2108416 2018-11-12 17:44 xyz2uv\Debug\myfirst_opencv.pdb
文件 26563 2018-11-08 19:15 xyz2uv\girl.jpg
文件 1322 2018-11-12 17:43 xyz2uv\myfirst_opencv\Debug\cl.command.1.tlog
文件 19944 2018-11-12 17:43 xyz2uv\myfirst_opencv\Debug\CL.read.1.tlog
文件 802 2018-11-12 17:43 xyz2uv\myfirst_opencv\Debug\CL.write.1.tlog
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
文件 2 2018-11-12 17:44 xyz2uv\myfirst_opencv\Debug\li
............此处省略51个文件信息
相关资源
- h264+ffmpeg+opencv开发手册
- opencvjs编译后的文件
- OpenCV图像处理教程 - 贾志刚 课程配套
- boostdesc vgg_generated.zip
- 机器视觉标定板选型表-凯林博
- opencv源程序
- 全景拼接_多张图像拼接(stitching_de
- protobuf-cpp-3.1.0.tar.gz 配置文件
- 图像特征点提取与匹配
- opencv获取图像像素值
- 动作识别 Hu距 SVM opencv2.4.9 VS2013
- createsamples.exe和haartraining.exe及所需d
- opencv车牌识别系统可直接运行
- 基于opencv与yolo的目标识别案例
- svm颜色分类
- QT OPENCV车牌识别 识别结果输出到Tex
- opencv3.2交叉编译移植笔记
- OpenCV人脸识别290071
- openCV库文件卷3
- opencv运动目标跟踪
- opencv基于颜色直方图进行模板图像匹
- 双目标定以及双目测距程序.rar
- OpenCV插件UE4
- opencv_world420.dll
- OpenCV 4.2.0 Visual Studio 2017 32位 版本
- OpenCV实现的图像2D转3D Image-2D-to-3D.ra
- 一幅图片中画两个矩形
- VS2015编译好的opencv3.4.1+contrib3.4.1
- 基于opencv的双目相机标定代码
- 图片合成视频OpenCV
评论
共有 条评论