i have an array of <65536*8 int8> (all are binary numbers). i want to make the corresponding grayimage having size if 256* 256. how can i do it.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
aditya kumar sahu
am 27 Nov. 2016
Kommentiert: Walter Roberson
am 30 Nov. 2016
i have an array of <65536*8 int8> (all are binary numbers) . i want to make the corresponding grayimage having size if 256* 256. how can i do it. kindly suggest me.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 27 Nov. 2016
as_numeric = bin2dec(char(YourArray + '0'));
YourImage = reshape(as_numeric, 256, []);
9 Kommentare
Walter Roberson
am 30 Nov. 2016
Yes, writing to JPEG loses information unless you tell imwrite() to use lossless compression. png and bmp do not lose information.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu National Instruments Frame Grabbers finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!