Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 OpenCV 有一个奇怪的问题。这是代码:
cv::Mat cvSideDepthImage1(150, 150, CV_8UC1, cv::Scalar(100)); cv::imshow("side1", cvSideDepthImage1);
根据文档cv::Mat,我希望这会显示一个 150x150 的图像,所有像素都设置为 100(所以整个图片应该是灰色的)。
cv::Mat
相反,我得到了这个:
我究竟做错了什么?
这似乎是 OS X 上 OpenCV 中的一个错误。
我已经在这里报告了。