App Designerを用いてプログラムで計算した数値を表にまとめたい
6 views (last 30 days)
Show older comments
App Designerを用いてプログラムで計算した数値を表にまとめたいと考えています.
例えば,二値化画像から白のピクセル数と黒のピクセル数を計算して表にでるようにしたいです.
App Designerのテーブルの使い方がよくわからず,教えていただきたいです.
よろしくお願いします.
0 Comments
Accepted Answer
Kojiro Saito
on 12 Dec 2022
例えば、コラム名を「白,黒」にしておき、
アプリのコールバックでピクセル数をカウントしてUITableのDataプロパティに入れます。
img = imread('coins.png');
bw = imbinarize(img);
bwCol = reshape(bw,[],1);
wht = sum(bwCol); % 白のピクセル数
blk = sum(bwCol==0); % 黒のピクセル数
app.UITable.Data = table(wht, blk);
実行例です。
4 Comments
More Answers (0)
See Also
Categories
Find more on App Designer を使用したアプリ開発 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!