Quote:
Originally Posted by jacob9706
I was looking through your code and do you realize you can use namespaces?
so for example right after your includes you would put something like this...
using namespace cv;
using namespace std;
Just something I thought I would share with everyone.
|
Actually, it isn't really considered good practice to use namespaces, when you start using multiple libraries with similarly named functions, it can get hectic, and its just better to get into the habit of not using them if possible.