thangvubk / Cascade-RPN

Code for NeurIPS 2019 paper: "Cascade RPN: Delving into High-Quality Region Proposal Network with Adaptive Convolution"
Apache License 2.0
180 stars 19 forks source link

Which code is play the effect of restriction below Eqs 7 in Section 4.1? #9

Closed aimhabo closed 4 years ago

aimhabo commented 4 years ago

In paper's section 4.1 says that:

  1. 𝑦[𝑝]=∑_(𝑜∈𝑂)▒〖𝑤[𝑜]∙𝑥[𝑝+𝑜]〗
  2. 𝑂=𝑂_𝑐𝑡𝑟+𝑂_𝑠ℎ𝑝
  3. 𝑂_𝑠ℎ𝑝={ (±(𝑎_𝑤^)/2 𝑜𝑟 0,±(𝑎_ℎ^)/2 𝑜𝑟 0)} )

I don't quite understand the operation referred to line 3. Could you please to point out what parts does it include in the code?

thangvubk commented 4 years ago

Please check here

aimhabo commented 4 years ago

@thangvubk Thank you very much!