How to convert byte array to image in matlab?

13 ビュー (過去 30 日間)
Agnes Diza Fahira
Agnes Diza Fahira 2021 年 4 月 29 日
コメント済み: Walter Roberson 2021 年 5 月 6 日
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
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
Agnes Diza Fahira 2021 年 5 月 3 日
it is rgb uint8 3D matrix, the image size is 4000x3000 and it's a color scale.. how to convert into an image again ??

サインインしてコメントする。

回答 (1 件)

Walter Roberson
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
Agnes Diza Fahira 2021 年 5 月 5 日
I try this but still error
I try to input YourByteArray with '[B@5faeada1' and didn't change for @byteValue
Error:
Error using arrayfun Unrecognized function or variable byteValue
What is byteValue? And what is YourByteArray?
Walter Roberson
Walter Roberson 2021 年 5 月 6 日

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeImages についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by