How to create a sliding window??

5 views (last 30 days)
IP student ;(
IP student ;( on 19 Apr 2019
Answered: IP student ;( on 19 Apr 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

Answers (2)

Walter Roberson
Walter Roberson on 19 Apr 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 ;( on 19 Apr 2019
Okay sir I will try this. Thank you

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!