color segmentati​on/substra​ction of green screen from image

5 Ansichten (letzte 30 Tage)
Sharif
Sharif am 31 Jul. 2012
Kommentiert: Image Analyst am 20 Apr. 2015
Hi i have taken photos of rocks using a green screen as a background. please see:- <http://www.flickr.com/photos/24335673@N04/7683980794/in/photostream/>>
i would like subtract the green bg as effectively as possible so that the boundary of the rock is preserved. would color segmentation be a good method? if so how can i achieve it? or perhaps a different seg method? thank sharif

Antworten (1)

Image Analyst
Image Analyst am 31 Jul. 2012
Bearbeitet: Image Analyst am 31 Jul. 2012
Get the separate color channels:
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
Then look where the blue and red channels are dark and the green channel is high.
mask = (redChannel < 50) & (blueChannel < 50) & (greenChannel > 50);
% Mask the image.
maskedRgbImage = bsxfun(@times, rgbImage, cast(mask,class(rgbImage)));
You copyrighted the image to prevent download, so that's about all I can do.
  3 Kommentare
KSY
KSY am 20 Apr. 2015
Hi. I want to mask purple color what is the setting for red,green and blue channel?
Image Analyst
Image Analyst am 20 Apr. 2015
Red and blue will be high and green will be low. Use impixelinfo() to let you mouse around the image and see what the RGB values are.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by