PDA

View Full Version : How to Link OpenCV 2.4.9 & Qt in MacOS



macs_reach
10th September 2014, 09:43
Hi ...
I have just installed OpenCV and QT5 using homebrew in Mac OS X Mavericks.
and installed QT Creator....

I have no idea to make a new program in QT Creator using OpenCV..
Please share a basic program which links Opencv and QT Creator and let me know hot to create a new project in Qt creator using OpenCV

Thx.

macs_reach
11th September 2014, 10:23
Hello there...

I have installed OpenCV using Homebrew in Mac OS Mavericks and QT Creator from the website.

I am trying to test OpenCV & QT Creator using a simple program from the internet, but I am ending up with some errors.

I donno wats going wrong.... I am new to Opencv and QT ... Your Help is much appreciated..

Below are my project details. Guide me for my first ever OpenCV & QT with Mac OS X Program......

Thx.

--- Untitled.pro File ---

QT += core

QT -= gui

TARGET = untitled1

CONFIG += console

CONFIG -= app_bundle

TEMPLATE = app

SOURCES += main.cpp

LIBS += -L/usr/local/Cellar/opencv/2.4.9/lib \

-lopencv_highgui \

-lopencv_imgproc \

-lopencv_core \

-lopencv_features2d \

-lopencv_calib3d \

INCLUDEPATH += /usr/local/Cellar/opencv/2.4.9/include \



--- Source File - main.cpp ---

include opencv2/core/core.hpp

include opencv2/highgui/highgui.hpp

include iostream

include opencv/cv.h

using namespace cv;

int main()

{

std::cout << "Hello World!" << std::endl;

cv::Mat mat;

mat = cv::imread("Unknown.JPEG");

cvNamedWindow("hello");

cv::imshow("hello",mat);

cvWaitKey(0);

return 0;
}


--- The Compile Output with Errors ---

14:30:57: Running steps for project untitled... 14:30:57: Configuration unchanged, skipping qmake step. 14:30:57: Starting: "/usr/bin/make" /Users/Macs/Qt/5.3.1/bin/qmake -spec macx-g++ CONFIG+=debug CONFIG+=x86_64 -o Makefile ../untitled/untitled.pro /Applications/Xcode.app/Contents/Developer/usr/bin/g++ -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -mmacosx-version-min=10.6 -o untitled main.o -F/usr/local/Cellar/qt5/5.3.1/lib -L/usr/local/Cellar/opencv/2.4.9/lib -lopencv_highgui -lopencv_imgproc -lopencv_core -lopencv_features2d -lopencv_calib3d -framework QtCore Undefined symbols for architecture x86_64: "cv::imread(std::string const&, int)", referenced from: _main in main.o "cv::imshow(std::string const&, cv::_InputArray const&)", referenced from: _main in main.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) make: * [untitled] Error 1 14:30:57: The process "/usr/bin/make" exited with code 2. Error while building/deploying project untitled (kit: Desktop) When executing step "Make" 14:30:57: Elapsed time: 00:00.

Jakr1387
11th September 2014, 12:31
Have you linked openCV library with Qt?

jakr1387

macs_reach
11th September 2014, 14:37
Its a Gud Question....the answer is no....
Trying to link...but no luck...Any idea to link ?

macs_reach
14th September 2014, 14:28
Hi !

Gud News .... works like charm

I restored my Mac with Time Machine and I just build OpenCV 2.4.9 from the source, added Kits & Version to QT creator its working now....

I am using Mac OS X 10.9.4, OpenCV 2.4.9, and Qt Creator 3.2.0 Based on Qt 5.3.1 (Clang 5.0 (Apple), 64 bit)

Thanks for your support.... Macs

macs_reach
14th September 2014, 14:30
Hi !

Gud News .... works like charm

I restored my Mac with Time Machine and I just build OpenCV 2.4.9 from the source, added Kits & Version to QT creator its working now....

I am using Mac OS X 10.9.4, OpenCV 2.4.9, and Qt Creator 3.2.0 Based on Qt 5.3.1 (Clang 5.0 (Apple), 64 bit)

Thanks for your support.... Macs