How to create a sliding window??

10 Ansichten (letzte 30 Tage)
IP student ;(
IP student ;( am 19 Apr. 2019
Beantwortet: IP student ;( am 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

Antworten (2)

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

Kategorien

Mehr zu Live Scripts and Functions finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by