Image Analyst: Segmentation (Extraction) of area between two red line
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I 'm woriking on Segmentation of Historical documents, so far i have identified the text lines in the historical documents using seam carving method and result image is attached, i wnat to extract or segment those identified lines, which is saperated by red line.

0 Kommentare
Antworten (1)
Image Analyst
am 7 Dez. 2018
Use poly2mask() to create a mask image. Then mask the image
% Mask the image using bsxfun() function to multiply the mask by each channel individually.
maskedRgbImage = bsxfun(@times, rgbImage, cast(mask, 'like', rgbImage));
Siehe auch
Kategorien
Mehr zu Convert Image Type finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!