mjq11302010044 / RRPN_plusplus

RRPN++: Guidance Towards More Accurate Scene Text Detection
89 stars 13 forks source link

ROTATION_RANGE #14

Closed asif-salim closed 2 years ago

asif-salim commented 2 years ago

How to set this parameter for a custom dataset?

mjq11302010044 commented 2 years ago

@asif-salim You can configure the dataset following the instruction in the ReadMe.

asif-salim commented 2 years ago

@mjq11302010044 Thanks. But this parameter is passed as an input inside configs/arpn/e2e_rrpn_R_50_C4_1x_train_AFPN_RT_LERB.yaml. The default is set as (20,10). Can you describe what this parameter is?

mjq11302010044 commented 2 years ago

@asif-salim Hi, the parameter you mentioned of is to bound the rotation augmentation, the first 20 means the interval range R, while the second 10 means the larger bound of the range, and forming the interval of the rotation range in [S-R, S].

asif-salim commented 2 years ago

@mjq11302010044 Thanks