Skip to content

Commit 757debd

Browse files
committed
removed unneccessary prints
1 parent 6ff63b5 commit 757debd

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/faceNet.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -256,10 +256,10 @@ void FaceNetClassifier::resetVariables() {
256256
}
257257

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

265265

src/mtcnn.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ mtcnn::mtcnn(int row, int col){
6363

6464
mtcnn::~mtcnn(){
6565
//delete []simpleFace_;
66-
std::cout << "mtcnn was destructed" << std::endl;
6766
}
6867

6968
vector<struct Bbox> mtcnn::findFace(cv::Mat &image){

src/videoStreamer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ void VideoStreamer::release() {
7171
}
7272

7373
VideoStreamer::~VideoStreamer() {
74-
std::cout << "VideoStreamer was destructed" << std::endl;
74+
7575
}

0 commit comments

Comments
 (0)