how to convert demodulated binary bits into image

1 次查看(过去 30 天)
inverse of
x=reshape((dec2bin(typecast(a(:),'uint8'),8)-'0').',1,[]);

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-2-20
s=num2cell(reshape(x,8,[])',2)
b=cellfun(@(x) bin2dec(strrep(num2str(x),' ','')),s);
out=reshape(b,n,m); % your original image is nxm

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by