Loading modules/inpaint/base.py +9 −0 Original line number Diff line number Diff line Loading @@ -140,6 +140,15 @@ class PatchmatchInpainter(InpainterBase): 'archived_files': 'macos_patchmatch_libs.7z', 'archive_sha256_pre_calculated': '9f332c888be0f160dbe9f6d6887eb698a302e62f4c102a0f24359c540d5858ea' }] elif sys.platform == 'win32': download_file_list = [{ 'url': 'https://github.com/dmMaze/PyPatchMatchInpaint/releases/download/v1.0/windows_patchmatch_libs.7z', 'sha256_pre_calculated': ['3b7619caa29dc3352b939de4e9981217a9585a13a756e1101a50c90c100acd8d', '0ba60cfe664c97629daa7e4d05c0888ebfe3edcb3feaf1ed5a14544079c6d7af'], 'files': ['opencv_world455.dll', 'patchmatch_inpaint.dll'], 'save_dir': 'data/libs', 'archived_files': 'windows_patchmatch_libs.7z', 'archive_sha256_pre_calculated': 'c991ff61f7cb3efaf8e75d957e62d56ba646083bc25535f913ac65775c16ca65' }] def setup_inpainter(self): from . import patch_match Loading Loading
modules/inpaint/base.py +9 −0 Original line number Diff line number Diff line Loading @@ -140,6 +140,15 @@ class PatchmatchInpainter(InpainterBase): 'archived_files': 'macos_patchmatch_libs.7z', 'archive_sha256_pre_calculated': '9f332c888be0f160dbe9f6d6887eb698a302e62f4c102a0f24359c540d5858ea' }] elif sys.platform == 'win32': download_file_list = [{ 'url': 'https://github.com/dmMaze/PyPatchMatchInpaint/releases/download/v1.0/windows_patchmatch_libs.7z', 'sha256_pre_calculated': ['3b7619caa29dc3352b939de4e9981217a9585a13a756e1101a50c90c100acd8d', '0ba60cfe664c97629daa7e4d05c0888ebfe3edcb3feaf1ed5a14544079c6d7af'], 'files': ['opencv_world455.dll', 'patchmatch_inpaint.dll'], 'save_dir': 'data/libs', 'archived_files': 'windows_patchmatch_libs.7z', 'archive_sha256_pre_calculated': 'c991ff61f7cb3efaf8e75d957e62d56ba646083bc25535f913ac65775c16ca65' }] def setup_inpainter(self): from . import patch_match Loading