You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot call the get_matcher(...) on the methods from imatch-toolbox as the YAML config files are not installed with the matching package. The following script results in FileNotFoundError:
FileNotFoundError: [Errno 2] No such file or directory: '/home/<user>/micromamba/envs/meshext/lib/python3.10/site-packages/matching/third_party/imatch-toolbox/configs/superglue.yml'
When the same call is done inside a Python interactive shell from within the image-matching-models directory, the configs are found without any issues.
I already tried to solve this issue with imatch-toolbox some time ago but without success. Do you have any solution or advice?
The text was updated successfully, but these errors were encountered:
So it seems the "As package" does not recursively capture and add all subdirectories (in particular, those that do not contain "package" aka python files) to site-packages at install.
The quick solution is the "From Source" install, but I'm looking into how to get these directories copied into the right place with the simple install as well.
Hi @alexstoken ,
Thanks for looking into the issue and sorry for the lack of communication from my side. I've been sick the last few days.
I can confirm that the "From Source" install copies the YAML configs for me.
I encounetered another similar issue with SuperGlue. The weights for SuperGlue models are stored directly in their repository. Therefore, the weights are cloned into image-matching-models/matching/third_party/imatch-toolbox/third_party/superglue/models/weights. However, they are not copied even with the "From Source" install.
Hi! Thank you very much for this project!
I cannot call the
get_matcher(...)
on the methods from imatch-toolbox as the YAML config files are not installed with thematching
package. The following script results in FileNotFoundError:FileNotFoundError: [Errno 2] No such file or directory: '/home/<user>/micromamba/envs/meshext/lib/python3.10/site-packages/matching/third_party/imatch-toolbox/configs/superglue.yml'
When the same call is done inside a Python interactive shell from within the
image-matching-models
directory, the configs are found without any issues.I already tried to solve this issue with imatch-toolbox some time ago but without success. Do you have any solution or advice?
The text was updated successfully, but these errors were encountered: