App designer - problem with thresholding image

1 回表示 (過去 30 日間)
Teshan Rezel
Teshan Rezel 2021 年 4 月 10 日
コメント済み: Teshan Rezel 2021 年 4 月 11 日
Hi folks,
I have the app attached, in which I am encountering two issues. Firstly, when trying to threshold an image and displaying the thresholded image, it would appear my function calls aren't working as the image displayed is not thresholded. (ResinThreshold function works in live editor, but not when called in app designer). The thresholding function is below.
Thanks
function ResinThreshold(app)
imgGrey = rgb2gray(app.img);
[counts, ~] = imhist(imgGrey, 255);
T = otsuthresh(counts);
BW = imbinarize(imgGrey, T);
BW = bwareaopen(BW, 3000);
BW = imfill(BW, 'holes');
BW = bwperim(BW);
BW = imdilate(BW, ones(5));
BW = imerode(BW, ones(3));
BW = imfill(BW, 'holes');
app.img = app.img.*repmat(uint8(BW),[1 1 3]);
end
  2 件のコメント
DGM
DGM 2021 年 4 月 11 日
I don't see any attached files.
Teshan Rezel
Teshan Rezel 2021 年 4 月 11 日
hi @DGM, apologies! I thought I'd attached it...I've ammended the error!

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

採用された回答

Image Analyst
Image Analyst 2021 年 4 月 11 日
You need to display the output image
imshow(app.img);
  5 件のコメント
Image Analyst
Image Analyst 2021 年 4 月 11 日
編集済み: Image Analyst 2021 年 4 月 11 日
I ran it but didn't know what to do. There are no instructions. You should do what I do. Have a listbox listing all the images, then a series of controls (checkboxes, pushbuttons, etc.) that say "Step 1 : select an image", "Step 2 : Select any options", "Step 3 : Mark Points", "Step 4 : Analyze selected ponts" or whatever. That will essentially guide the user through the various steps without a user manual or training. Otherwise, attach the software manual for it (though I'm not sure I'll read it if it's too lengthy).
Teshan Rezel
Teshan Rezel 2021 年 4 月 11 日
hi @Image Analyst, so the app should prompt you to select a folder with images in it on startup. once selected, pushing any of the buttons on the left of the table will move increment the relevant tally and display the next image in sequence.
I haven't listed any instructions as this is a very specific app designed for use by a very few people, and its based entirely on an existing "manual" methodology. Typically, they will go through hundreds of images on the app and tally them up, so it's not feasible to implement a listbox for images.

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

その他の回答 (0 件)

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by