How to initialize Mat size and fill it with zeros in a class ?
How do I initialize a Mat with a certain size and fill it with zeros in a class ? The simple
cv::Mat test(cv::Size(1, 49), CV_64FC1);
does not work. Sorry this worked
cv::Mat texture_ = cv::Mat::zeros(cv::Size(1,49), CV_64FC1);