zzzxxxttt / pytorch_simple_CenterNet_45

A simple pytorch implementation of CenterNet (Objects as Points)
308 stars 63 forks source link

请问一下,这个项目里面有用到DCN吗? #8

Closed songyuc closed 4 years ago

songyuc commented 4 years ago

尊敬的开发者,你好, 我想请教一下,这个CenterNet里面有用到DCN吗? 还有就是那个关于DCN的编译, 图片 第一行的命令是不是改成, cd $CenterNet_ROOT/lib/DCNv2_new

期待你的回复!

zzzxxxttt commented 4 years ago

Hi @songyuc DCN is used in ResDCN, you'll have to compile DCN if you use ResDCN as backbone. As I wrote in the README, if you're using pytorch 1.x, just rename DCNv2_new to DCNv2, and run

cd $CenterNet_ROOT/lib/DCNv2
./make.sh
songyuc commented 4 years ago

Hi @zzzxxxttt , thanks for your kind answer!