Untuk mendapatkan library OpenCV versi update terbaru cara paling oke adalah melakukan self compiling. Yaitu dengan mendownload source opencv dan opencv_contrib dan selanjutnya di compile dengan bantuan cmake dan make.
Selanjutnya bila library opencv telah terinstal kita bisa membuat program c++ seperti dibawah ini dan melakukan compile di console mac os.
#create file dengan nama edges.cpp
#include "opencv2/opencv.hpp"
using namespace cv;
int main(int, char**)
{
VideoCapture cap(0); // open the default camera
if(!cap.isOpened()) // check if we succeeded
return -1;
Mat edges;
namedWindow("edges",1);
for(;;)
{
Mat frame;
cap >> frame; // get a new frame from camera
cvtColor(frame, edges, COLOR_BGR2GRAY);
GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);
Canny(edges, edges, 0, 30, 3);
imshow("edges", edges);
if(waitKey(30) >= 0) break;
}
// the camera will be deinitialized automatically in VideoCapture destructor
return 0;
}
cara mengcompile pada console:
g++ -std=c++11 edges.cpp -o edges `pkg-config --cflags --libs opencv4`
chmod 755 edges
./edges