feature detectors debug/release
When to use release libs and call detector.detect(...)(no matter what SIFT or SURF) under debugging of project get exceptions. If to use debug libs under debugging, all working good. (VS 2013, OpenCV 2.4.9) Is it necessary to use debug libs for feature detectors under debugging or I did something wrong?
NEVER use release libs with a debug build (or the other way round).
To add to that, your release doesn't contain the thousand of ASSERTS to check and warn you for bad data or input arguments. It will render the error messages completely useless. Only use RELEASE editions once you got a completely built and bugfree DEBUG version of your software.
Ok, thank you)
What kind of asserts are kept in release libs?
@thdrksdfthmn , CV_Error, CV_Assert are kept in release mode, CV_DbgAssert gets discarded