draw bounding box around a character

3 visualizaciones (últimos 30 días)
Elysi Cochin
Elysi Cochin el 24 de Mayo de 2020
Comentada: Elysi Cochin el 25 de Mayo de 2020
The code i used is
Ch = bw(boundrow(1):boundrow(end),boundcol(1):boundcol(end));
i'll get the character into the variable Ch
how can i draw a bounding box in the image

Respuesta aceptada

Image Analyst
Image Analyst el 24 de Mayo de 2020
Presumably you used regionprops()
props = regionprops(binaryImage, 'BoundingBox');
% Plot all the bounding boxes.
hold on;
for k = 1 : length(props)
rectangle('Position', props(k).BoundingBox, 'EdgeColor', 'y');
end
  3 comentarios
Image Analyst
Image Analyst el 24 de Mayo de 2020
I would not do it that way, but if you insist, after you get Ch you can put a box around the rectangle in the original image like this:
line([boundcol(1), boundcol(end)], [boundrow(1), boundrow(1), 'Color', 'y', 'LineWidth', 2);
line([boundcol(1), boundcol(end)], [boundrow(end), boundrow(end), 'Color', 'y', 'LineWidth', 2);
line([boundcol(1), boundcol(1)], [boundrow(1), boundrow(end), 'Color', 'y', 'LineWidth', 2);
line([boundcol(end), boundcol(end)], [boundrow(1), boundrow(end), 'Color', 'y', 'LineWidth', 2);
or
% Make rect = [xLeft, yTop, width, height]
r = [boundcol(1), boundrow(1), abs(boundcol(end) - boundcol(1)), abs(boundrow(end) - boundrow(1))];
rectangle('Position', r, 'EdgeColor', 'y', 'LineWidth', 2);
Elysi Cochin
Elysi Cochin el 25 de Mayo de 2020
Thank you Sir. The last comment worked. Its working in both methods

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox 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!

Translated by