Skip to content

Commit

Permalink
removed unneccessary prints
Browse files Browse the repository at this point in the history
  • Loading branch information
nwesem committed Sep 18, 2020
1 parent 6ff63b5 commit 757debd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/faceNet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ void FaceNetClassifier::resetVariables() {
}

FaceNetClassifier::~FaceNetClassifier() {
// this leads to segfault if engine or context could not be created during class instantiation
// this leads to segfault
// this->m_engine->destroy();
// this->m_context->destroy();
std::cout << "FaceNet was destructed" << std::endl;
// std::cout << "FaceNet was destructed" << std::endl;
}


Expand Down
1 change: 0 additions & 1 deletion src/mtcnn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ mtcnn::mtcnn(int row, int col){

mtcnn::~mtcnn(){
//delete []simpleFace_;
std::cout << "mtcnn was destructed" << std::endl;
}

vector<struct Bbox> mtcnn::findFace(cv::Mat &image){
Expand Down
2 changes: 1 addition & 1 deletion src/videoStreamer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ void VideoStreamer::release() {
}

VideoStreamer::~VideoStreamer() {
std::cout << "VideoStreamer was destructed" << std::endl;

}

0 comments on commit 757debd

Please sign in to comment.