将64位数字分解为一组子图

时间:2019-07-31 21:18:33

标签: matlab

我正在从数据集中构造64张图像。

我必须将它们用(4 * 4)细分为4个数字。

我只是设法在一个图中将它们细分为64。

任何想法如何做到。

python -c "import tensorflow as tf; sess=tf.Session(); print(sess.run(tf.reduce_sum(tf.random.normal([1000, 1000]))))"

1 个答案:

答案 0 :(得分:1)

只需使用两个循环即可。

这只是用于生成ee,因为我没有ee.mat

cm = imread('cameraman.tif');
ee = repmat(cm, 1,1,64);

这是两个循环


counter = 1;
for nfigure=1:4
    figure
    for nimg = 1:16
        subplot(4,4,nimg); 
        imshow(abs(ee(:,:,counter)));
        title(['reconstructed Image' num2str(counter)]);

        counter = counter + 1;
    end
end

请注意,我已经删除了行

s=ee(:,:,i);
s(:,:,i)=abs(s);