mjq11302010044 / RRPN_pytorch

RRPN in pytorch 1.0 ----- Arbitrary-Oriented Scene Text Detection via Rotation Proposals
MIT License
262 stars 56 forks source link

where are the code files of RRoI pooling and skew-NMS? #63

Open Gavin-zsr opened 2 years ago

Gavin-zsr commented 2 years ago

I have read your paper, and want to know how to implement the RRoI pooling layer and skew-NMS. I found the file rroi_pool.py in maskrcnn-benchmark/layers, but the content of this file is same as the file roi_pool.py. Can you please tell me where I can find implement of RROI pooling layer and skew-NMS. Thanks a lot!

mjq11302010044 commented 2 years ago

@Gavin-zsr Please see maskrcnn-benchmark/csrc for more details, here we implement the function using CUDA kernels. The skew-NMS is in the rotation/ directory.

Gavin-zsr commented 2 years ago

@Gavin-zsr Please see maskrcnn-benchmark/csrc for more details, here we implement the function using CUDA kernels. The skew-NMS is in the rotation/ directory.

Thanks for your reply! And I also want to know where these two methods are used, in the definition of model architecture, i didn't find there apperance or i missed them somewhere, can you tell me where these two methods be used.