Zeeshan Khan Suri
Zeeshan Khan Suri

Reputation: 476

OpenCV "cvaux.h" equivalent

I am new to opencv and am using OpenCV 3.0.0. I found an example using include "cvaux.h". But, I want to use the new features rather than old C functions.

So, what is the equivalent hpp file for "cvaux.h"? Thanks

Upvotes: 0

Views: 1685

Answers (1)

Miki
Miki

Reputation: 41765

If your example is actually using cvaux.h, then you probably need to get a newer example. cvaux is related to obsolete C api and is now deprecated.

However, it can be found in: #include <opencv/cvaux.h>.

Note that most of the time you can just use the "include all" header: #include <opencv2/opencv.hpp>

Upvotes: 1

Related Questions