How to create a sliding window??

8 visualizaciones (últimos 30 días)
IP student ;(
IP student ;( el 19 de Abr. de 2019
Respondida: IP student ;( el 19 de Abr. de 2019
I want to create a sliding window of Height= height of the bounding boxes
After this that window should slide untill it finds next bounding box if it doesn't find window should move to next line.
In next line again the height of the sliding window changes based on the height of the bounding boxes

Respuestas (2)

Walter Roberson
Walter Roberson el 19 de Abr. de 2019
Apply regionprops() to find the bounding boxes. Sort the bounding boxes by lower left corner, according to x within y (that is, y first, and if there are multiple ones with the same y, then sort those ones by x.) This is equivalent to sliding your attention column by column (x coordinate) within each row looking for a lower left corner of a bounding box. (Depending on the scan order, you might prefer to add the height to the y coordinate so you sort by upper left corner.)
No actual sliding needs to be done for this once you have your bounding box coordinates from regionprops.

IP student ;(
IP student ;( el 19 de Abr. de 2019
Okay sir I will try this. Thank you

Categorías

Más información sobre Live Scripts and Functions 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