ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

capstayn's profile - activity

2019-05-20 01:57:18 -0500 marked best answer Transform from odom_frame to world_frame

I want to create a dense 3d model of an indoor, gps-denied, scene traversed by a MAV. The map produces its own odometry, which is good enough for navigation but not precise enough for 3d reconstruction. I can extract, out of the images taken by the MAV, precise poses with openmvg, but I'd like to make use of the odometry poses estimated by the MAV. OpenMVG allows the introduction of prior poses to its methods (see here), but they need to be included in the EXIF data of the images in form of GPS coordinates.

So I need to convert coordinates in the odom_frame to coordinates in the world_frame. I could also provide the actual GPS coordinates of the first pose, so that I could place the scene in the world, but that's not important.

I've been searching in ROS documentation and all the transformations I've found seem to be from world_frame to odom_frame, but this task looks like quite simple, so I guess there must be some ROS module which does the job.

What should I do in order to express odom_frame coordinates in world_frame coordinates?

2019-05-20 01:55:14 -0500 received badge  Famous Question (source)
2017-10-17 00:02:37 -0500 received badge  Notable Question (source)
2017-10-16 17:24:32 -0500 received badge  Popular Question (source)
2017-10-14 06:45:26 -0500 asked a question Transform from odom_frame to world_frame

Transform from odom_frame to world_frame I want to create a dense 3d model of an indoor, gps-denied, scene traversed by

2017-10-08 07:34:56 -0500 received badge  Enthusiast
2017-10-07 13:56:25 -0500 received badge  Supporter (source)
2017-05-04 10:14:46 -0500 received badge  Notable Question (source)
2016-04-07 02:42:27 -0500 received badge  Popular Question (source)
2016-04-06 09:54:11 -0500 commented question rosmake doesn't create binaries

Oh, none, other than that was the instruction given in the ROSNodeTutorialC++. Just created a catking workspace and used catkin_make, and worked like a charm, thanks. So perhaps the tutorial I was following should be updated...

2016-04-06 06:28:19 -0500 asked a question rosmake doesn't create binaries

I'm following the ROSNodeTutorialC++ (here). I've previously installed ROS indigo on ubuntu 14.04 and done some others tutorials.

When I run cmake . in the folder node_example some suspicious warnings appear (see this ROS question, unanswered), and then when I run rosmake, following the tutorial's instructions, lots of messages about "No Makefile in package ..." are printed off (which apparently is fine, according to this answer) but the usual messages expected from a make call don't appear at all. This is the extract that deals with node_example:

[rosmake-7] Starting >>> node_example [ make ]                                  
[rosmake-7] Finished <<< node_example ROS_NOBUILD in package node_example

Consequently, no binaries are generated.

If I run though make , the compilation proceeds normally and the binaries are generated just fine.

Am I doing something wrong with rosmake? Why is it not working as expected?

P.S. By the way, the environmental path ROS_PACKAGE_PATH contains conveniently the path to the folder node _example

2016-04-06 06:24:35 -0500 commented question catkin_package() include dir

@Aylin COSKUN, did you fix this? Could you share with us how you fixed it?