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.
有没有办法将使用 image_analysis.load_images() 加载的图像转换为 cv::mat 格式?
我正在使用 OpenCV HOG 检测器,并且卡在了 Turi Images 和 OpenCV 之间的桥梁上。
谢谢!
通过查看 Image 的源代码,我看到有一个名为 pixel_data 的属性,它将图像对象的像素数据作为 numpy 数组返回。然后,我可以在需要 cv::mat 对象的地方使用该 numpy 数组。
我不是 python 专家,所以幕后可能有一些转换魔法。如果有更好的方法来实现这一点,请添加您自己的答案。