mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2025-12-30 04:52:29 +00:00
More travis debugging.
This commit is contained in:
@@ -487,9 +487,6 @@ void SequenceCapture::CaptureThread()
|
||||
// Set the grayscale frame
|
||||
ConvertToGrayscale_8bit(tmp_frame, tmp_gray_frame);
|
||||
|
||||
// TODO rem
|
||||
std::cout << "Capture queue size inserting " << capture_queue.size() << std::endl;
|
||||
|
||||
capture_queue.push(std::make_tuple(timestamp_curr, tmp_frame, tmp_gray_frame));
|
||||
}
|
||||
}
|
||||
@@ -500,9 +497,6 @@ cv::Mat SequenceCapture::GetNextFrame()
|
||||
{
|
||||
std::tuple<double, cv::Mat, cv::Mat_<uchar> > data;
|
||||
|
||||
// TODO rem
|
||||
std::cout << "Capture queue size getting " << capture_queue.size() << std::endl;
|
||||
|
||||
capture_queue.pop(data);
|
||||
time_stamp = std::get<0>(data);
|
||||
latest_frame = std::get<1>(data);
|
||||
|
||||
Reference in New Issue
Block a user