diff options
Diffstat (limited to 'ftnoir_tracker_pt/point_extractor.cpp')
-rw-r--r-- | ftnoir_tracker_pt/point_extractor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftnoir_tracker_pt/point_extractor.cpp b/ftnoir_tracker_pt/point_extractor.cpp index b6e9ad3a..4213eb06 100644 --- a/ftnoir_tracker_pt/point_extractor.cpp +++ b/ftnoir_tracker_pt/point_extractor.cpp @@ -39,7 +39,7 @@ const vector<Vec2f>& PointExtractor::extract_points(Mat frame, float dt, bool dr // convert to grayscale
Mat frame_bw;
- cvtColor(frame, frame_bw, CV_RGB2GRAY);
+ cvtColor(frame, frame_bw, COLOR_BGR2GRAY);
// convert to binary
threshold(frame_bw, frame_bw, threshold_val, 255, THRESH_BINARY);
|