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的逻辑(matlab)的等效命令是什么?我看到逻辑图像(1 个通道)的位深度等于“1”。对于普通的 1 通道图像,我们可以将其设置为 8U 或 32F(即位深为 8、32)。我对吗?我之所以问,是因为当我尝试使用 matlab 进行细化时,image(logical) 和 image(uint8 @ im2double) 给出了不同的结果。
在 MATLAB 中,logical类型的大小为 1字节。尝试以下操作:
logical
>> x = true x = 1 >> whos x Name Size Bytes Class Attributes x 1x1 1 logical
因此,相当于 OpenCV 中的逻辑图像将是8U具有单通道的图像
8U