cvg / pixel-perfect-sfm

Pixel-Perfect Structure-from-Motion with Featuremetric Refinement (ICCV 2021, Best Student Paper Award)
Apache License 2.0
1.29k stars 132 forks source link

Bug: Need to remove ANTIALIAS #119

Closed catid closed 9 months ago

catid commented 9 months ago

In extractor.py:

    filters = {
        n: getattr(PIL.Image, n)
        for n in ["BILINEAR", "BICUBIC", "ANTIALIAS", "LANCZOS"]
    }

The "ANTIALIAS" option has been deprecated for a while and is now removed and is causing build problems.

sarlinpe commented 9 months ago

Thanks, could you please submit a PR that removes it?