Package request - OpenCV #44
-
I was hoping to have OpenCV added to the MPC image. Installation of this package requires the ability to install system libraries and this cannot be done through the terminal available to users in MPC. In my own pangeo environments I have installed it using the following steps: In Dockerfile:
in environment.yml, under pip dependancies
This would help us folks trying to use classic computer vision algorithms on satellite images. If others know of alternative implementations of morphological dilation filters already available through packages presently on MPC, please let me know. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Thanks for opening this. Does https://scikit-image.org/docs/stable/api/skimage.morphology.html#skimage.morphology.dilation, via scikit-image, suite your needs? As an alternative, to the Dockerfiles, you might be able to use I can look into adding it to the base image. The tradeoff is the increased size of the Dockerfile and potential conflicts with other libraries present in the image. |
Beta Was this translation helpful? Give feedback.
Thanks for opening this. Does https://scikit-image.org/docs/stable/api/skimage.morphology.html#skimage.morphology.dilation, via scikit-image, suite your needs? As an alternative, to the Dockerfiles, you might be able to use
mamba install -c conda-forge opencv
.I can look into adding it to the base image. The tradeoff is the increased size of the Dockerfile and potential conflicts with other libraries present in the image.