Ask Your Question

AJ7's profile - activity

2013-07-30 10:11:10 -0600 commented question Use individual function definitions from OpenCV instead of using library.

Ok. But can you suggest what basic options/switches for Makefile might be? Or any pointer to do so? I'm currently studying structure of cmake files and Makefiles generated by cmake for clues. But it's taking forever.

2013-07-30 08:33:23 -0600 commented question Use individual function definitions from OpenCV instead of using library.

@berak Not exactly ripping. My only requirement is to build only above mentioned three libraries separately, so that they will fit in my embedded project. Its more of "using precisely what's needed".

2013-07-30 07:02:58 -0600 commented question Use individual function definitions from OpenCV instead of using library.

@berak Yes, I want to do either what you said or get the source code of the functions I am using in my project, build an SO file using my Makefile. And to avoid 1 big binary chunk, I want to know how to build these CV functions (compile and link flags, switches etc). I am using only core, imgproc and highgui.

2013-07-29 08:40:35 -0600 asked a question Use individual function definitions from OpenCV instead of using library.

I need to port my project to an embedded architecture. For that, is it possible to use function definitions instead of using libraries? I am working on Linux system (Ubuntu 12.04) and I need to to this because of some cross-compilation issues. If it is possible, how to do that?