jiexiong2016 / GCNv2_SLAM

Real-time SLAM system with deep features
Other
782 stars 194 forks source link

descriptor is how to form? #8

Open wkwukai opened 5 years ago

wkwukai commented 5 years ago

Hello,can you tell me ,after upsample,and binary neural networ,form an 256x320x240 feature map/heatmap ,and now,how to operation?

jiexiong2016 commented 5 years ago

The detection decoder outputs a mask which can be reshaped to the original image resolution using pixel shuffling. By taking the coordinate of keypoints, a bilinear sampling can be performed using "torch.nn.functional.grid_sample". Please check the pytorch documents for more details.