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.
Mac mini(2012),OS X Yosemite(10.10.5) OpenCV2
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.
** 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
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.
Mettez OpenCV dans OS X avec Homebrew et vidéo d'entrée / sortie avec Python Comment installer OpenCV avec Homebrew
En passant, j'aimerais essayer de créer un environnement OpenCV pour Ubuntu ensuite.
Recommended Posts