Conflict of type size_t between OpenCV and OpenCL [closed]
Hi, in an OpenCL project (main file name is convolutionImg.cpp), i want to use OpenCV for displaying images.
But i have a conflict and i don't know how to solve it without having to modify the source code of cl.hpp or core/type_c.h.
If somebody has an idea of what to do, it will really help !
if you delete namespace and use cl::size_t or cv::size_t is it OK?
I delete using namespace cl; and it works thanks !!
As a good practice: You should always use the namespace::typeOrFunction for eliminating these kind of confusions not only for the readers, but compilers, too