I have a 2D grayscale image (= data) which I am trying to segment using fcm.m:
Nc=2; %number of clusters is 2
[centers,U] = fcm(data,Nc);
How do I apply the output of fcm.m to segment the original image. I cannot find a worked example online.
I have a 2D grayscale image (= data) which I am trying to segment using fcm.m:
Nc=2; %number of clusters is 2
[centers,U] = fcm(data,Nc);
How do I apply the output of fcm.m to segment the original image. I cannot find a worked example online.
just do
reshape: