필터 지우기
필터 지우기

How do I include an image labeler in my application?

조회 수: 2 (최근 30일)
strongminsu
strongminsu 2021년 10월 18일
답변: Walter Roberson 2024년 3월 8일
I put a function to call image labeler in matlab application.
It works normally in matlab, but when deployed through the matlab compiler, an error saying that the image labeler cannot be found appears.
Is it impossible to export an application including an image labeler? Or is there any sollution?

답변 (2개)

Yukthi S
Yukthi S 2024년 3월 1일
편집: Yukthi S 2024년 3월 8일
Hello
I assume that you were talking about packaging an app which was already created . After creating the apps, you package them using MATLAB Compiler. This process compiles your MATLAB code and dependencies into a standalone executable.
In order to include Image Labeler, you need to add “Computer Vision Toolbox” in the dependencies.
  • Go to Apps Tab in MATLAB
  • Open Package App.
  • Add MathWorks Products(here "MATLAB" and “Computer Vision ToolBox”).
You can use the following MATLAB command to know about the Dependencies that the program requires:
[fList,pList] = matlab.codetools.requiredFilesAndProducts('imageLabeler');
pList.Name
ans = 'MATLAB'
ans = 'Computer Vision Toolbox'
Hope this helps!

Walter Roberson
Walter Roberson 2024년 3월 8일
Helper apps such as Image Labler cannot be compiled.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by