mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2025-12-30 04:52:29 +00:00
Another attempt to figure out why travis breaks.
This commit is contained in:
@@ -81,9 +81,9 @@ script:
|
||||
- make -j4
|
||||
- export OMP_NUM_THREADS=1
|
||||
- export VECLIB_MAXIMUM_THREADS=1
|
||||
- ../build/bin/FeatureExtraction -f "../samples/2015-10-15-15-14.avi" -q -mloc model/main_clm_general.txt
|
||||
- ../build/bin/FaceLandmarkImg -fdir ../samples -out_dir data -multi_view 1 -wild -q
|
||||
- ../build/bin/FaceLandmarkImg -f ../samples/sample1.jpg -out_dir data -multi_view 1 -wild -q
|
||||
- ../build/bin/FeatureExtraction -fdir "../samples/image_sequence" -out_dir output -q
|
||||
- ../build/bin/FeatureExtraction -f "../samples/2015-10-15-15-14.avi" -q -mloc model/main_clm_general.txt
|
||||
- ../build/bin/FaceLandmarkVidMulti -fdir ../samples/image_sequence -q -mloc model/main_clm_general.txt
|
||||
- ../build/bin/FaceLandmarkVidMulti -f ../samples/multi_face.avi -q -mloc model/main_clnf_general.txt
|
||||
@@ -487,6 +487,9 @@ 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));
|
||||
}
|
||||
}
|
||||
@@ -496,6 +499,10 @@ cv::Mat SequenceCapture::GetNextFrame()
|
||||
if(!is_webcam)
|
||||
{
|
||||
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