longcw / RoIAlign.pytorch

RoIAlign & crop_and_resize for PyTorch
555 stars 103 forks source link

a bug: spacing_w -> spacing_h #2

Closed CharlesShang closed 6 years ago

CharlesShang commented 6 years ago
            nh = spacing_w * float(self.crop_height - 1) / float(image_height - 1)
# should be
            nh = spacing_h * float(self.crop_height - 1) / float(image_height - 1)