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

mifritscher's profile - activity

2016-06-01 09:11:44 -0500 received badge  Famous Question (source)
2014-11-07 08:28:06 -0500 received badge  Notable Question (source)
2014-03-21 06:12:17 -0500 received badge  Famous Question (source)
2014-01-23 23:31:09 -0500 received badge  Notable Question (source)
2014-01-23 23:18:11 -0500 commented answer Can you recommend a module for localization using one ore two video cameras?

thanks! But it seems that viso2 heavily depends on x86/x64 :-( I first needed to disable the sse2 flag, but it also hard-includes files which are specific to sse2: linaro@michis-cubietruck:~/ros_foreign_src/viso2/libviso2/libviso2$ make [ 11%] Building CXX object CMakeFiles/viso2.dir/src/demo.cpp.o In file included from /home/linaro/ros_foreign_src/viso2/libviso2/libviso2/src/viso.h:26:0, from /home/linaro/ros_foreign_src/viso2/libviso2/libviso2/src/viso_stereo.h:25, from /home/linaro/ros_foreign_src/viso2/libviso2/libviso2/src/demo.cpp:34: /home/linaro/ros_foreign_src/viso2/libviso2/libviso2/src/matcher.h:30:23: fatal error: emmintrin.h: No such file or directory compilation terminated. But I'm working on arm.

2014-01-23 23:12:13 -0500 commented answer Can you recommend a module for localization using one ore two video cameras?

thanks for the hint - where can I find the sources for the modified packages? I can only find the original sources without the adaptions for ros... EDIT: sorry, found it: https://github.com/ethz-asl/ethzasl_ptam

2014-01-22 22:27:02 -0500 received badge  Favorite Question (source)
2014-01-22 10:09:31 -0500 received badge  Popular Question (source)
2014-01-21 08:46:54 -0500 asked a question Can you recommend a module for localization using one ore two video cameras?

The title says all - I've one (or two cameras, maybe handy for stereo vision) which I would like to use for localization. Data from odometry is here, too.

2013-10-28 17:32:51 -0500 received badge  Notable Question (source)
2013-01-18 03:55:55 -0500 received badge  Popular Question (source)
2013-01-14 21:40:11 -0500 received badge  Popular Question (source)
2013-01-11 05:41:09 -0500 received badge  Student (source)
2013-01-11 00:28:51 -0500 asked a question how to use packages with are organized in stacks with catkin?

how can I use packages with are organized in "old-style" stacks within packages with are build with catkin? e.g. gps_common which is within the stack gps_umd. rospack does find it, but not find_package(gps_common REQUIRED).

2013-01-10 22:57:11 -0500 received badge  Scholar (source)
2013-01-10 22:57:02 -0500 received badge  Supporter (source)
2013-01-10 22:56:54 -0500 answered a question How I can use generated headers (like from messages) from one package in another?

yes, thanks, you are right - I misread the filename. Now it works, thanks!

2013-01-10 22:18:45 -0500 asked a question How I can use generated headers (like from messages) from one package in another?

I'm using groovy + catkin. How can I include the devel/include<package_name>, which contains e.g. the generated header-files from the messages in another package?

find_package(package_name REQUIRED)

and

include_directories(include
  ${catkin_INCLUDE_DIRS}
  ${Boost_INCLUDE_DIRS}
  ${merlin_messages_INCLUDE_DIRS}
)

doesn't seem to be enough, I suppose that this include only the headers which come from this package, but not the automatically generated one?