Note that the host where we're working is Ubuntu 12.04 and the cross-compiler used for ARM is arm-none-linux-gnueabi.
BUILD:
In order to cross-compile OpenCV, we will use Cmake to generate makefiles. Install it first.
- $ sudo apt-get install cmake cmake-curses-gui
- $ cd ~
- $ wget http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.9/opencv-2.4.9.zip
- $ unzip opencv-2.4.9.zip
- $ gedit .bashrc
- export PATH=$PATH:/home/sezerb/Projects/ToolChain/arm-2012.09/bin
- $ mkdir ~/build && cd ~/build
- $ touch toolchain.cmake
- $ gedit toolchain.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set( CMAKE_SYSTEM_NAME Linux ) | |
set( CMAKE_SYSTEM_PROCESSOR arm ) | |
set( CMAKE_C_COMPILER arm-none-linux-gnueabi-gcc ) | |
set( CMAKE_CXX_COMPILER arm-none-linux-gnueabi-g++ ) | |
#set( CMAKE_FIND_ROOT_PATH ~/targetfs ) |
OpenCV supports "neon" since version 2.3. Since we are using 2.4.9 now, we can enable/disable neon support from CMake gui later on.
Now it's time to cross-compile OpenCV:
- $ cmake -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake ../opencv-2.4.9/
- ccmake .
Now press 'c' and 'g' to configure and generate makefile.
- $ make
- $ make install
CODING and TESTING:
Create a file named as Main.cpp as below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <opencv2/opencv.hpp> | |
using namespace std; | |
using namespace cv; | |
int main(int argc, char** argv) | |
{ | |
Mat M(5,5, CV_8UC3, Scalar(0,0,255)); | |
cout << "M = " << endl << " " << M << endl << endl; | |
return 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: run | |
run: Main | |
Main: Main.cpp | |
arm-none-linux-gnueabi-g++ -I/home/sezerb/build/install/include -L/home/sezerb/build/install/lib Main.cpp -lopencv_core -o Main |
After copying the libraries and header, copy the "Main" executable binary to your target system and run it by typing:
- ./Main
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Customer/usb/sda1 # ./Main | |
M = | |
[0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255; | |
0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255; | |
0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255; | |
0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255; | |
0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255, 0, 0, 255] |