ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The source installation is the only way to install something on an ARM Platform but after a while is pretty straightforward:
first checkout the source code
$ svn checkout https://code.ros.org/svn/ros-pkg/stacks/vision_opencv/trunk
then create a build dir and go into it
$ mkdir build && cd build
then make it with cmake
$ cmake ..
then make and install
$ make
$ sudo make install
hope I could help.