Can't create cascades classifier object in window universal apps

asked 2014-10-12 11:02:47 -0600

after i create the cascades classifier object in window universal apps, when compiled the system the error show as image below. Same problem going for create HOGDescripter object.


image description

edit retag flag offensive close merge delete

Comments

1

In short, unresolved externals is a linker error, it cannot link because it cannot find the particular symbol. that symbol is probably in another library, so you must link against it or tell the linker where to find the library. In you case the library is probably opencv_objdetect.

Next time, please post the output of the console as text and not a screenshot. And tell us more about your configuration; opencv version, os, compiler/linker options, what have you already tried...etc

boaz001 gravatar imageboaz001 ( 2014-10-12 15:21:30 -0600 )edit

My guess, you are either

- combining x64 system with x32 libraries or vice versa
- combining visual studio 2013 with vc10 instead of vc12

Is that possible? Add more info please.

StevenPuttemans gravatar imageStevenPuttemans ( 2014-10-14 06:49:01 -0600 )edit