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.
1 | initial version |
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.
2 | No.2 Revision |
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.work. Sorry this worked
cv::Mat texture_ = cv::Mat::zeros(1, cv::Size(1,49), CV_64FC1);
3 | No.3 Revision |
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(1, cv::Size(1,49), cv::Mat::zeros(cv::Size(1,49), CV_64FC1);