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.
我必须创建一个图像来保存双值(即-0.0001or 0.005)。我用过
-0.0001
0.005
IplImage* temp = cvCreateImage(size, IPL_DEPTH_32F, 1)
但效果不好。你有什么好主意吗?
它可以正常工作,尽管您无法可视化32F图像,但您必须将其转换为8U. 请参阅此页面。CV_32F顺便说一句,现在调用 const 。
32F
8U
CV_32F