How to convert byte array to image in matlab?
이전 댓글 표시
i have been convert an image to byte array in java and i have
byte array = [B@5faeada1
now i want to convert that byte array to image in matlab, how to do it??
댓글 수: 2
David Hill
2021년 4월 29일
When you say a byte array, is it a rgb uint8 3D matrix? or a 1D array of hexidecimal digits? If so, you will need to know the image size and whether the image is color or just gray scale.
Agnes Diza Fahira
2021년 5월 3일
답변 (1개)
Walter Roberson
2021년 5월 3일
reconstructed_image = reshape(typecast(int8(arrayfun(@byteValue, YourByteArray)),'uint8'), [4000, 3000, 3]);
There might well be better ways: this is the way I could get to work.
댓글 수: 2
Agnes Diza Fahira
2021년 5월 5일
Walter Roberson
2021년 5월 6일
Are you looking for something similar to https://www.mathworks.com/matlabcentral/fileexchange/53716-decodejpeg ?
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!