Semantic segmentation evaluation results
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Vidip
2024-3-26
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!