Skip to content

Commit

Permalink
explicit parameters fixes compilation error on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
schwittlick committed Nov 19, 2016
1 parent 58c223f commit d30cb39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/FaceDTW/src/ofApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,10 +478,10 @@ void ofApp::keyPressed(int key){
//Setup the plots for prediction
predictedClassPlot.setup( FRAME_RATE * 5, 1, "predicted label" );
predictedClassPlot.setFont( font );
predictedClassPlot.setRanges( 0, pipeline.getNumClasses() );
predictedClassPlot.setRanges( 0, pipeline.getNumClasses(), false, false , false );
classLikelihoodsPlot.setup( FRAME_RATE * 5, pipeline.getNumClasses(), "class likelihoods" );
classLikelihoodsPlot.setFont( font );
classLikelihoodsPlot.setRanges( 0, 1 );
classLikelihoodsPlot.setRanges( 0, 1, false, false, false );


}else infoText = "WARNING: Failed to train pipeline";
Expand Down

0 comments on commit d30cb39

Please sign in to comment.