Carsten Drösser
Carsten Drösser

Reputation: 496

Qt+OpenCV: Symbols not found for architecture x86_64

I want to use the stereo-module of OpenCV, programming with Qt. When building my project, i get the following errors:

building output

error output

My setup:

My pro-file:

Qt-project pro-file

Who can help me?

Upvotes: 0

Views: 66

Answers (1)

rbaleksandar
rbaleksandar

Reputation: 9691

According to the documentation for StereoSGBM it is part of the calib3d module, which is part of the contrib that you have mentioned already have.

I see you have linked against core, imgproc, imgcodecs and highgui but the calib3d is missing.

Upvotes: 1

Related Questions