Ask Your Question

Revision history [back]

The object files for namesapace cv

What I am trying do is basically create a wrapper function for Mingw g++ so that once it is complied ...the exe can automatically be used from the cmd line to compile openCV programs...and I have almost completed it. The only problem is with the cv namespace functions like cv::VideoCapture and all are throwing a linker exception, all the old functions seem to run pretty smoothly though...for libraries I have used the <opencv dir="">/build/x86/vc12/lib and also took the pain to mention all the libs in the wrapper program...still the cv namespace is giving me a hell of a problem. All I need the location of those object files and then its done...my wrapper will be officially complete...and please don't give me any bull** that I will have to use MSVS cuz I really hate bloated IDEs.

This is basically what is being given to the cmd line:

g++ myPro.cpp -o MyPro -I"<the headers="" location="">" -L"<opencv>/build/x86/vc12/lib" -lopencv_core249...............(all the libs)

So what am I am doing wrong exactly....please help me out if you can so that I can upload my code as opensource and give other programmers chance to compile openCV programs directly from the cmd line

click to hide/show revision 2
retagged

updated 2014-05-18 08:39:35 -0600

berak gravatar image

The object files for namesapace cv

What I am trying do is basically create a wrapper function for Mingw g++ so that once it is complied ...the exe can automatically be used from the cmd line to compile openCV programs...and I have almost completed it. The only problem is with the cv namespace functions like cv::VideoCapture and all are throwing a linker exception, all the old functions seem to run pretty smoothly though...for libraries I have used the <opencv dir="">/build/x86/vc12/lib and also took the pain to mention all the libs in the wrapper program...still the cv namespace is giving me a hell of a problem. All I need the location of those object files and then its done...my wrapper will be officially complete...and please don't give me any bull** that I will have to use MSVS cuz I really hate bloated IDEs.

This is basically what is being given to the cmd line:

g++ myPro.cpp -o MyPro -I"<the headers="" location="">" -L"<opencv>/build/x86/vc12/lib" -lopencv_core249...............(all the libs)

So what am I am doing wrong exactly....please help me out if you can so that I can upload my code as opensource and give other programmers chance to compile openCV programs directly from the cmd line