Image Browser Error Receive for Image Data Store
5 views (last 30 days)
Show older comments
I have an image datastore. I receive the following meesage when I want to use the ImageBrowser.
Thanks in advance for your help.
++
Error in executing callback registered with ViewModel:
Error using images.internal.app.imageBrowser.web.ImageBrowserCore/warnIfLabelsPresent
Unable to resolve the name 'tool.App'.
++
0 Comments
Answers (1)
TED MOSBY
on 4 Jun 2025
From the limited information provided, you may try the following hacks to resolve the error, it these doesn't resolve the error, then please share the code files and commands along with the datastore so that I can reproduce the issue at my end.
If you have a folder called +tool somewhere ahead of the MathWorks root folders on the MATLAB path, MATLAB looks there first and therefore never sees the internal tool.App class. This is the most common reason for the message. A quick check:
>> which -all tool.App
If the command lists a file inside your own project (or simply returns “tool.App not found”) you may have a path-ordering problem.
You can then try:
restoredefaultpath
rehash toolboxcache
Now try opening the "ImageBrowser" again:
imageBrowser(fullfile(matlabroot,'toolbox','images','imdata'));
If it still does not open, please do a clean installation of the latest version of MATLAB as the there might be damaged or incomplete installation. Refer to this MATLAB answer:
Hope this helps! Feel free to reply here if you still face issues.
See Also
Categories
Find more on Image Processing and Computer Vision 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!