How to create a sliding window??

4 次查看(过去 30 天)
IP student ;(
IP student ;( 2019-4-19
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

回答(2 个)

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

类别

Help CenterFile Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by