Homebrewがインストールされているとします。
brew install pkg-config
brew install opencv
適当なプログラムを書きます。
test_opencv.cpp
#include <opencv2/opencv.hpp>
int main(){
cv::Mat a = cv::imread("img.jpg", 1);
cv::imshow("hello", a);
cv::waitKey();
}
コンパイル時にpkg-config
を使って必要なヘッダやライブラリを設定します。
g++ `pkg-config --libs --cflags opencv` test_opencv.cpp
動作確認をします。
./a.out