[PYTHON] Présentation d'OpenCV sur Mac avec homebrew

Aperçu

Un mémo lors de la création d'un environnement OpenCV à l'aide de homebrew. Du réglage initial à l'exécution de l'échantillon.

environnement

Mac mini(2012),OS X Yosemite(10.10.5) OpenCV2

en premier

J'ai installé homebrew. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Pour ceux qui n'ont jamais commencé xcode

You have not agreed to the Xcode license. Before running the installer again please agree to the license by opening Xcode.app or running: sudo xcodebuild -license

Un message apparaît, démarrez xcode.

Téléchargez et installez OpenCV et Python

** Installation liée à Python ** brew tap homebrew/science brew install python pip install numpy

** Installation liée à OpenCV ** brew install cmake automake celt faac fdk-aac git lame libass libtool libvorbis libvpx libvo-aacenc opencore-amr openjpeg opus sdl schroedinger shtool speex texi2html theora wget x264 xvid yasm

brew install ffmpeg --with-fdk-aac --with-libvo-aacenc --with-libvorbis --with-libvpx --with-openjpeg --with-theora --with-opencore-amr

brew install eigen brew install jasper brew install tbb brew install qt brew install opencv --with-eigen --with-jasper --with-libtiff --with-qt --with-tbb --with-ffmpeg

Essayez l'échantillon

Charger l'image, convertir en image grise, sortie.

test.py


import cv2
import numpy as np
import sys

cv2.namedWindow('edge')
img = cv2.imread('test1.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
thrs1 =1000
thrs2 =10
edge = cv2.Canny(gray, thrs1, thrs2, apertureSize=5)
cv2.imshow('edge', edge)

cv2.waitKey(0)
cv2.destroyAllWindows()

Il aurait dû s'exécuter avec succès.

Associé / Référence

Mettez OpenCV dans OS X avec Homebrew et vidéo d'entrée / sortie avec Python Comment installer OpenCV avec Homebrew

Autre

En passant, j'aimerais essayer de créer un environnement OpenCV pour Ubuntu ensuite.

Recommended Posts

Présentation d'OpenCV sur Mac avec homebrew
Trébucher avec opencv3 de homebrew
Utiliser OpenCV avec Python @Mac
Installez PyQt5 avec homebrew sur Mac OS X Marvericks (10.9.2)
flux tensoriel avec anaconda sur mac
Présentation du shell MicroPython (Mac) avec ESP-WROOM-02
Comment installer OpenCV sur Mac
Comment installer Theano sur Mac OS X avec homebrew
Erreur et solution lors de l'installation de python3 avec homebrew sur mac (catalina 10.15)
Présentation de MAMP + Python + SQL Alchemy (Mysql-Python) sur Mac
Chase des applications actives sur Mac avec Python
Créer un environnement Python avec Anaconda sur Mac
python sur mac
Installez OpenCV 4.0 et Python 3.7 sur Windows 10 avec Anaconda
Essayez de travailler avec Mongo en Python sur Mac
Mettez Python 2.7.x dans pyenv sur Mac OSX 10.15.5
Installez Python 3 sur MacOS Catalina (avec Homebrew uniquement)
Installez Tensorflow sur Mac
Installez pyenv sur Mac
Détecter le retour du chat avec OpenCV
Binarisation avec OpenCV / Python
Présentation de Boost.python avec homebrew
Pyenv + virtualenv sur Mac
Installez Ansible sur Mac
Installez Python sur Mac
Installer Python 3 dans un environnement Mac
installation de numba sur mac
Étapes pour installer CUDA 7.5 avec Mac (El Capitan) + Homebrew
Faire pivoter les sprites avec OpenCV
MicroPython (mac) avec ESP-WROOM-02
Ubuntu 20.04 sur raspberry pi 4 avec OpenCV et utilisation avec python
Je veux AWS Lambda avec Python sur Mac!
Exécutez OpenMVG sur Mac
Étapes pour créer rapidement un environnement d'apprentissage en profondeur sur Mac avec TensorFlow et OpenCV
Augmentation des données avec openCV
Installez Python 3.4 sur Mac
Installez Caffe sur Mac
Installer mecab sur Mac
Résoudre les problèmes liés à l'installation d'OpenCV sur Raspberry Pi et à la capture
installer mecab-python sur Mac
Essayez deepdream sur Mac
TopView facile avec OpenCV
Notes minimales lors de l'utilisation de Python sur Mac (édition Homebrew)
Créer un environnement d'apprentissage automatique sur Mac (pyenv, deeplearning, opencv)
Créer un environnement de développement Python (pyenv / virtualenv) sur Mac (Homebrew)
Gestion intuitive des mots de passe avec aws ssm sur alias Mac / Linux
Connectez-vous à centos6 sur Virtualbox avec une connexion SSH depuis Mac
Paramètres d'environnement d'apprentissage automatique basés sur Python3 sur Mac (coexistence avec Python2)
Remarques sur le déploiement de pyenv avec Homebrew et la gestion des versions de Python
Apprentissage en profondeur avec Shogi AI sur Mac et Google Colab
Reconnaissance faciale avec OpenCV de Python
"Traitement Apple" avec OpenCV3 + Python3
Essayez la détection des bords avec OpenCV
Remarques sur l'installation de dlib sur Mac
Environnement Pyramid + Mongodb sur Mac
Installer pygame sur python3.4 sur Mac
Édition d'image avec python OpenCV
Capture de caméra avec Python + OpenCV