decodeJpeg

decodes encoded JPEG array into a Matlab array (image)

現在この提出コンテンツをフォロー中です。

I was looking for this functionality for some time, but all file exchange submissions seem to be some custom decoders
Then on stackoverflow I found a snippet which uses java for decoding: http://stackoverflow.com/questions/18659586/from-raw-bits-to-jpeg-without-writing-into-a-file
This snippet worked for me and I am submitting it as a function here.

USAGE:
% get a stream of bytes representing an endcoded JPEG image
fid = fopen('football.jpg', 'rb');
data = fread(fid, Inf, '*uint8');
fclose(fid);

% decode jpeg
img = decodeJpeg(data);

% check results against directly reading the image using IMREAD
img2 = imread('football.jpg');
assert(isequal(img, img2))

引用

Evgeny (2026). decodeJpeg (https://jp.mathworks.com/matlabcentral/fileexchange/53716-decodejpeg), MATLAB Central File Exchange. に取得済み.

カテゴリ

Help Center および MATLAB AnswersResizing and Reshaping Matrices についてさらに検索

一般的な情報

MATLAB リリースの互換性

  • すべてのリリースと互換性あり

プラットフォームの互換性

  • Windows
  • macOS
  • Linux
バージョン 公開済み リリース ノート Action
1.0.0.0