标签: matlab image-processing
我有一个2D二进制矩阵。如何将其转换为黑白图像?
答案 0 :(得分:5)
你应该写
I = mat2gray(A)
你可以做一个
imshow(I)
看它运作。