J'étais un peu inquiet, donc un mémorandum
Mac OS 10.15.3 Python 3.7.3 (by homebrew) opencv-contrib-python 4.2.0.32 (by pip) opencv-python 4.2.0.32 (by pip)
Si vous mettez python-opencv
et essayez le code du cadeau,
J'obtiens l'erreur suivante.
qt.qpa.plugin: Could not find the Qt platform plugin "cocoa" in ""
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
Quand je l'ai recherché, de nombreuses personnes m'ont demandé de définir la variable d'environnement QT_QPA_PLATFORM_PLUGIN_PATH
, mais cela ne fonctionnait pas dans mon propre environnement.
Après tout, cela a été résolu lorsque je suis passé à la série opencv-python 4.1.
pip3 install opencv-python==4.1.2.30
pip3 install opencv-contrib-python==4.1.2.30
https://stackoverflow.com/questions/60032540/opencv-cv2-imshow-is-not-working-because-of-the-qt
Recommended Posts