摘要: T = readtable('BIL.txt'); b = table2array(T); b = cast(b, 'uint8'); [h,w] = size(b) % for i = 1:3:h % l = floor(i/3)+1; % image(l,:,1)=b(i,:); % image 阅读全文
posted @ 2021-09-19 21:18 Timor88 阅读(41) 评论(0) 推荐(0)
摘要: T = readtable('BIL.txt'); b = table2array(T); % b = cast(b, 'uint8'); [h,w] = size(b); x = [1 w] y = [1 h/3] R = b(1:3:h,:); G = b(2:3:h,:); B = b(3:3 阅读全文
posted @ 2021-09-19 21:17 Timor88 阅读(51) 评论(0) 推荐(0)