how to Ignore bounding box inside bounding box
when i draw the bounding box with centriod, i got the bounding box inside bounding box like this
Actually i want to ignore the inner bounding box in all my bounding box.
I am using below code with ignoring all circles. link
Just cross reference the corners with eachother. If the topleft corner of the smaller object has an x and y larger then topleft of the larger object AND it has an bottomright corner with an x and y value that is smaller than the x and y of the larger object, then you can simply remove the detection. Seems pretty feasible to me.
Ah confused, can you provide some link or code(rough code).
I find it very strange that you cannot solve this yourself or by the directions given. This is a basic mathematical problem... However @Haris gave you a good indication on how to solve your problem also if you do not want to do it during postprocessing!