Background and Foreground separation.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I try to separate the foreground and background picture. The picture is two people are standing by the sea. How to separate the back ground and foreground. I use the color threshold but I got confused.Please help me out.
4 comentarios
Image Analyst
el 15 de Jun. de 2020
And what is background and what is foreground? The beach, the sea, the people, the sky?
Respuestas (1)
Image Analyst
el 28 de Jun. de 2020
Try this to mask your image
% Mask the image using bsxfun() function to multiply the mask by each channel individually. Works for gray scale as well as RGB Color images.
maskedRgbImage = bsxfun(@times, rgbImage, cast(mask, 'like', rgbImage));
Ver también
Categorías
Más información sobre Image Processing and Computer Vision en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!