画像のピクセルごとの輝度を表示する方法

jpegFiles = dir('*.jpg');
numfiles = ; % フォルダ内のファイルの数
mydata = cell(1, numfiles);
for k = 1:numfiles
mydata{k} = imread(jpegFiles(k).name)
T{k}=mydata{k}
end
T{1}
上のコードで計算したものを、ワークスペースに表示しようとしたところ、524288 個を超える要素を含む変数の概要は表示できませんというようなエラーが表示されました。解決策を教えてください。

Antworten (1)

Atsushi Ueno
Atsushi Ueno am 1 Feb. 2024

0 Stimmen

「MATLAB 524288」で検索すると同様のQ&Aが多数ありますが、これは仕様なので仕方ありません。
他の方法を試すのが良いかと思います。

Kategorien

Mehr zu 大きなファイルとビッグ データ finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2023b

Gefragt:

am 1 Feb. 2024

Beantwortet:

am 1 Feb. 2024

Community Treasure Hunt

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

Start Hunting!