tusen-ai / simpledet

A Simple and Versatile Framework for Object Detection and Instance Recognition
Apache License 2.0
3.08k stars 486 forks source link

proposal_layer #222

Closed machinelear closed 5 years ago

machinelear commented 5 years ago

simpledet/operator_cxx/contrib/proposal_layer.cc workspace_proposals[n][index][4] = scores[n][i + width height num_anchors][j][k]; in 373 line .Why is this channels "i + width height num_anchors" instead of "i+num_anchors"?

RogerChern commented 5 years ago

the .cc file is outdated. Please check the .cu implementation.

machinelear commented 5 years ago

Thanks!