Clear Filters
Clear Filters

Cannot compile app with Segment Anything Model SAM due to license?

19 views (last 30 days)
Hi,
I could not compile my app with SAM due to the following error.
Where can I find the specific LICENSE that states why and how SAM cannot be packaged?
Or am I misunderstanding anything about specifying parameters for packaging? I'm very new to compiling app in Matlab.
Thanks,
Lam
mcc -o v9 -W 'WinMain:v9,version=1.0' -T link:exe -d 'D:\OneDrive - ZeonCorporation\1.WORK\24_MatlabSAM\worked\v9\for_testing' -v 'D:\OneDrive - ZeonCorporation\1.WORK\24_MatlabSAM\worked\v9.m' -a 'D:\OneDrive - ZeonCorporation\1.WORK\24_MatlabSAM\worked\LICENSE' -a C:\ProgramData\MATLAB\SupportPackages\R2024a\toolbox\images\supportpackages\sam\data\preTrainedSAM.mat -a C:\ProgramData\MATLAB\SupportPackages\R2024a\toolbox\images\supportpackages\sam\+matlabshared\+supportpkg\+internal\+sppkglegacy\SAM.m -r 'C:\Program Files\MATLAB\R2024a\toolbox\compiler\packagingResources\default_icon.ico' -Z 'Deep Learning Toolbox Converter for ONNX Model Format'
Compiler version: 24.1 (R2024a)
Analyzing file dependencies.
Warning: Removed http proxy service credentials from preference settings.
Warning: In "C:\ProgramData\MATLAB\SupportPackages\R2024a\toolbox\images\supportpackages\sam\+matlabshared\+supportpkg\+internal\+sppkglegacy\SAM.m", "matlabshared.supportpkg.internal.sppkglegacy.SupportPackageRegistryPluginBase" are excluded from packaging for the MATLAB Runtime environment according to the MATLAB Compiler license. Either remove the file or function from your code, or use the MATLAB function "isdeployed" to ensure the function is not invoked in the deployed component.
foundation::storage::vfs::Exception
mcc failed.

Accepted Answer

Walter Roberson
Walter Roberson on 14 Aug 2024 at 22:24
Limitations
This function does not support parfor loops, as its performance is already optimized. (since R2023a)
Thus, it has a compiled internal implementation, and so is not suitable for code generation.
  3 Comments
Walter Roberson
Walter Roberson on 15 Aug 2024 at 17:08
It means that it cannot be used whatsoever in a standalone program.

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB Compiler 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!