MATLAB: Image segmentation on meat picture

image segmentation

Hi guys i have a trouble in segmentation of animal meat picture.
Is there anybody who knows which program(code)i can use to segment this kind of pics?
The meat picture include black background, White area, red area.
Thank you !!!

Best Answer

I would filter by the red color plane.
See below:
myImage = imread('too-much-red-meat101.jpg');
rPlane = myImage(:,:,1) - 0.5*(myImage(:,:,2)) - 0.5*(myImage(:,:,3));
red = rPlane > 100 ;
white = rPlane < 5;
pink = rPlane > 5 & rPlane < 100;
figure
imshow(red)
figure
imshow(white)
figure
imshow(pink)
I tried this on a picture from google images and it seemed to work well. You probably need to pick different criteria for red, white, pink, and black. My photo only had red, white and pink.
Ironically, this answer was written by a strict vegetarian!
Related Question