필터 지우기
필터 지우기

How to extract the pixels of segmented image that has different label from the ground truth image?

조회 수: 1 (최근 30일)
I have segmented and ground truth image.
Segmented images obtained using FCM. while the ground truth image was made with manually segmentation using image processing application by people with competency in this field.
This image is a black and white images and only had 2 label (0 and 1). I want to compare both images and extracting the pixels of the segmented image that has a different label from the ground truth. How to do it?
Thanks

채택된 답변

Image Analyst
Image Analyst 2016년 1월 4일
You can use xor()
differentPixels = xor(segmentedImage, groundTruthImage);

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by