CIR-KIT / human_detector

Human detector package for Tshukuba Challenge
MIT License
6 stars 6 forks source link

Add cv hedder #7

Closed MoriKen254 closed 7 years ago

MoriKen254 commented 7 years ago

これまで本パッケージを使用したことのない環境でビルドしたら下記エラーが出ました。

src/target_object_detector.cpp:202:27: error: ‘minAreaRect’ is not a member of ‘cv’
   cv::RotatedRect rrect = cv::minAreaRect(points_mat);

というわけで下記ヘッダーを加えたら事なきを得ました。

include <opencv2/imgproc/imgproc.hpp>

Travisも通っています。

forno commented 7 years ago

修正ありがとうございます