当前位置:网站首页>[ORB_SLAM2] SetPose, UpdatePoseMatrices
[ORB_SLAM2] SetPose, UpdatePoseMatrices
2022-08-02 02:08:00 【Xiaoqiu SLAM practical tutorial】
SetPose
void Frame::SetPose(cv::Mat Tcw){mTcw = Tcw.clone();UpdatePoseMatrices();}UpdatePoseMatrices
void Frame::UpdatePoseMatrices(){mRcw = mTcw.rowRange(0,3).colRange(0,3);mRwc = mRcw.t();mtcw = mTcw.rowRange(0,3).col(3);// world to cameramOw = -mRcw.t()*mtcw;// camera to the world}world to camera mtcw/n[0;0;0]Camera to World mOw/n[0;0;0] 边栏推荐
- 【LeetCode Daily Question】——704. Binary Search
- Fly propeller power space future PIE - Engine Engine build earth science
- to-be-read list
- PHP uses PHPRedis and Predis
- Golang分布式应用之Redis
- 使用百度EasyDL实现厂区工人抽烟行为识别
- typescript38-class的构造函数实例方法继承(implement)
- Constructor instance method of typescript36-class
- 【轮式里程计】
- 拼多多借力消博会推动国内农产品品牌升级 看齐国际精品农货
猜你喜欢
随机推荐
Redis 持久化 - RDB 与 AOF
【ORB_SLAM2】SetPose、UpdatePoseMatrices
Huawei's 5-year female test engineer resigns: what a painful realization...
Win Go development kit installation configuration, GoLand configuration
项目后台技术Express
【Brush the title】Family robbery
『网易实习』周记(二)
AOF重写
HSDC和独立生成树相关
Force buckle, 752-open turntable lock
Shell Beginners Final Chapter
to-be-read list
Handwritten Blog Platform ~ Day Two
Newton's theorem and related corollaries
LeetCode brush diary: LCP 03. Machine's adventure
编码经验之谈
Centos7 安装postgresql并开启远程访问
乱七八糟的网站
Garbage Collector CMS and G1
Record the pits where an error occurs when an array is converted to a collection, and try to use an array of packaging types for conversion








