Here's the attribute from the fila example in IB:
StandardTagAndInitialize {
tagging_method = "GRADIENT_DETECTOR","REFINE_BOXES"
RefineBoxes {
level_0 = [( 0,2*N - 1),( N - 1, 2*N - 1)]
level_1 = [( 0,REF_RATIO *2*N - 1),( REF_RATIO *N - 1,REF_RATIO *2*N - 1)]
level_2 = [( 0,REF_RATIO^2*2*N - 1),( REF_RATIO^2*N - 1,REF_RATIO^2*2*N - 1)]
}
}
I'm confused about the refine box area. How does the RefineBoxes work?
For example, I have an area with NxN grid. I would like to put a square refine box that is one level higher at the center of the area and the box width is half the the domain width, how should i set up this attribute?