yzhq97 / cnn-registration

An image registration method using convolutional neural network features.
MIT License
435 stars 138 forks source link

No pairwise_distance file to import #1

Closed nitschw closed 5 years ago

nitschw commented 6 years ago

I was wrong about before, so I deleted the comment.

I am curious however if this supports images of different dimensions or if the input image must always be a static size?

yzhq97 commented 6 years ago

The input image can be of any size as along as the width and height are multiples of 32. The size of the input image can have two aspects of influence: (i) The receptive field of each descriptor would be different and may affect the performance. (ii) Larger input image requires more computation.

Borda commented 4 years ago

the pairwise_distance module is missing in utils package so it is impossible to import it...

blutjens commented 4 years ago

I think, going into shape_context.py and changing the import into from utils.utils import pairwise_distance might solve your issue. `