Clear Filters
Clear Filters

In App Designer, how can I utilise Image Labeler?

1 view (last 30 days)
J
J on 17 Jan 2023
Answered: Himanshu on 28 Feb 2023
Currently, I am developing an app that involves object detection and would like to use Image Labeler as part of it. How would I go about implementing essentially an app within an app?

Answers (1)

Himanshu
Himanshu on 28 Feb 2023
Hello,
I understand that you want to perform object detection and use Image Labeler in your app.
Image Labeler app provides an easy way to mark the region of interest (ROI) labels interactively. This being an external app, it is not possible to implement this app within another app.
However, as a workaround, you can programmatically load and process the images separately using “imageLabeler” function. Make sure that the images are readable using the “imread” function. Refer to the below code for more clarity.
% To programmatically load a folder of images:
imageFolder = fullfile(toolboxdir('vision'),'visiondata','bookcovers')
imageLabeler(imageFolder)
You can refer to the below documentation to understand more about the “imageLabeler” and “imread” function.

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!