Skip to content

Commit

Permalink
Merge pull request #113 from mgsx-dev/fix/broken-stuff
Browse files Browse the repository at this point in the history
Fix/broken stuff
  • Loading branch information
kylemcdonald committed Jan 20, 2016
2 parents e754034 + 762461e commit b2b5875
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion example-batch-process/addons.make
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ofxCv
ofxFaceTracker
ofxGui
ofxOpenCv
ofxOpenCv
ofxTiming
2 changes: 1 addition & 1 deletion example-blink/src/ofApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ void ofApp::update() {
rowGraph.addSample(avg - runningMean);
runningMean = 0;//ofLerp(runningMean, avg, .3);

Mat sobelImgMat = toCv(sobelImg);
cv::Mat sobelImgMat = toCv(sobelImg);
imitate(sobelImg, gray);
sobel.convertTo(sobelImgMat, CV_8U, .5);
sobelImg.update();
Expand Down
1 change: 1 addition & 0 deletions src/ofxFaceTracker.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

#pragma once

#include "ofMain.h"
#include "ofxCv.h"
#include "FaceTracker/Tracker.h"
#include "ExpressionClassifier.h"
Expand Down

0 comments on commit b2b5875

Please sign in to comment.