Semantic segmentation evaluation results
1 view (last 30 days)
Show older comments
Hi
When i try evaluating semantic segmentation results by running "metrics = evaluateSemanticSegmentation(pxdsResults,pximds)" i get this error "size of the categorical data returned by dsResults and dsTruth must be the same". Please how can i fix this
0 Comments
Answers (1)
Vidip
on 26 Mar 2024
The error message you're encountering, "size of the categorical data returned by dsResults and dsTruth must be the same," suggests that there's a mismatch in dimensions between the predicted segmentation results (pxdsResults) and the ground truth data (pximds).
To fix it, you need to ensure that all images in pxdsResults and pximds have the same dimensions. If the images or their corresponding segmentation masks have been resized or cropped during preprocessing or prediction, you'll need to make sure that both the predictions and the ground truth data are brought to the same dimensions before evaluation. Also, make sure that the categories (classes) in pxdsResults and pximds match exactly.
0 Comments
See Also
Categories
Find more on Image Data Workflows 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!