what is the correct data type mat.forEach<Vec3b>(Operator());
if for 3-channel of
type int I am using vec3b ->mat.forEach<vec3b>(Operator())
,
what should I use for float type ->mat.forEach<???>(Operator())
CV_8UC3 -> cv::Vec3b
CV_32FC3 -> ?
add a comment