fatal error C1083: Cannot open include file: 'opencv/cvaux.h': No such file or directory
Some one please help me i tried many ways but did not work
#include <opencv/cvaux.h>
#include <opencv/highgui.h>
#include <opencv/cxcore.h>
#include <stdio.h>
#include <stdlib.h>
that's the old 1.0 c-api headers. don't use those.
if you find code, that looks like that, avoid it, it's far too old. instead:
include "opencv2/core/core.hpp"
include "opencv2/highgui/highgui.hpp"
etc.
Agreed with @berak ... we encourage people to stop using the old interface. Docs on those are so outdated, that may constructions don't work anymore as expected.