If I do not use any namespace my code works just fine, but when I try using a method with namespace like this:
cv::nameOfMethodInHighGUI()
the compiler tells me that cv has no member method called like that.
So I’ve thought that highgui.h and cv.h have different namespaces, am I right?
Can anybody please tell what namespace I should use to call methods from the header file highgui.h?
All opencv functions envolve in the namespace cv !
So to display an image you can use cv::imshow (on opencv >2)