我很感兴趣如何将给定的图像转换为只有数字的矩阵形式?例如让我们拍下下面的照片
我知道 matlab 中存在特殊函数,它将给定的图像分解为颜色和数字,例如我在这个网站上看到了这个代码
I = imread('test.jpg');
b = dec2bin(I); % b becomes vector
% some actions with binary vector
du = bin2dec(b);
du = reshape(du,size(I)); % converting vector du to 3d Image array
imwrite(uint8(du), 'du.jpg'); %save our du to file du.jpg
I = imread('du.jpg'); %test if it saved correctly
imshow(du)
并转换成我的图片,像这样
I=imread('tensor_in.jpg');
b=dec2bin(I)
并得到以下数组,实际上只有零和一
00001110
00001111
00010000
00010000
00010001
00010010
00010011
00010101
00010110
00011000
00011001
00011000
00010101
00010101
00010101
00010101
00010101
00010101
00010101
00010101
00011000
00011000
00011000
00011000
00011000
00011000
00011000
00011000
00011011
00011011
00011011
00011011
00011011
00011011
00011011
00011011
00011100
00011100
00011100
00011101
00011101
00011110
00011110
00011101
00011110
00011011
00011011
00011011
00100000
00100011
00101001
00101011
00101111
显然我没有继续,因为它的大小是
<151074x8 char>
并遵循与例如相同的规则
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
但是我很感兴趣,如果不是获取数字数组,而是如何获取其他数字的数组,例如
2 1 3
4 21 23
67 89 100
让我们这样说。我可以在 matlab 中做吗?请帮帮我