Clear Filters
Clear Filters

How to fix this error: Check for incorrect argument data type or missing argument in call to function 'categories'.?

14 views (last 30 days)
I applied the fokkowing code to read label pixel image to use it in evaluation jacard index:
dataDir = fullfile(toolboxdir('vision'),'visiondata');
imDir = fullfile(visiondatadir,'crack','7001-236.png');
Unrecognized function or variable 'visiondatadir'.
pxDir = fullfile(visiondatadir,'CrackPixelLabelData_1','Label_1.png');
imds = imageDatastore(imDir);
classNames = ["crack"];
pixelLabelID = [1];
pxds = pixelLabelDatastore(pxDir,classNames,pixelLabelID);
I = read(imds);
C = read(pxds);
categories(C)
B = labeloverlay(I,C);
figure
imshow(B)
Then, I got the following error:
Check for incorrect argument data type or missing argument in call to function 'categories'.
Error in Untitled5 (line 30)
categories(C)
How to fix it, and how to use the label image in jaccard evaluation code?

Answers (1)

Steven Lord
Steven Lord on 10 Oct 2023
which -all categories
/MATLAB/toolbox/matlab/datatypes/categorical/@categorical/categories.m % categorical method /MATLAB/toolbox/matlab/bigdata/@tall/categories.m % tall method /MATLAB/toolbox/parallel/parallel/@codistributed/categories.m % codistributed method
This function is only defined for categorical arrays (and tall categorical and codistributed categorical arrays, I believe.) Is your variable C a categorical array? What does the command class( C) show?
  7 Comments
yasmin ismail
yasmin ismail on 10 Oct 2023
@Image Analyst I used pixel label from image labeler App and after I finished labeling I used Export to file . Then I opened the file which created called PixelLabeData and I found the labeled image is totally black(label_1.png) which is attached and the label pixels not shown, I undertsand that I have to use the following code to let label appear:
figure;
[i, m] = imread('Label_1.png');
imshow(i,m)
but how to use [i,m] or any otherway to let the labeled pixels appear in the image (not to be black image)to be used in jaccard equation to evaluate similarity?

Sign in to comment.

Categories

Find more on Convert Image Type 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!