Small fix for references in class variables.

This commit is contained in:
Tadas Baltrusaitis
2017-11-02 09:08:24 +00:00
parent f00d1fe51e
commit be5a4cd41d
2 changed files with 11 additions and 12 deletions

View File

@@ -137,10 +137,10 @@ namespace Recorder
std::vector<std::pair<std::string, double> > au_occurences;
// Gaze related observations
cv::Point3f& gazeDirection0;
cv::Point3f& gazeDirection1;
cv::Vec2d& gaze_angle;
cv::Mat_<double>& eye_landmarks;
cv::Point3f gazeDirection0;
cv::Point3f gazeDirection1;
cv::Vec2d gaze_angle;
cv::Mat_<double> eye_landmarks;
};
}