Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit 97f268e

Browse files
remove debug logs
1 parent 6bc17bf commit 97f268e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

cc/modules/objdetect/HOGDescriptor.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ NAN_METHOD(HOGDescriptor::Load) {
140140
}
141141

142142
NAN_METHOD(HOGDescriptor::Compute) {
143-
std::cout << "Compute" << std::endl;
144143
FF::SyncBinding(
145144
std::make_shared<HOGDescriptorBindings::ComputeWorker>(HOGDescriptor::Converter::unwrap(info.This())),
146145
"HOGDescriptor::Compute",

cc/modules/objdetect/HOGDescriptorBindings.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include "HOGDescriptor.h"
2-
#include <iostream>
2+
33
#ifndef __FF_HOGDESCRIPTORBINDINGS_H_
44
#define __FF_HOGDESCRIPTORBINDINGS_H_
55

@@ -10,9 +10,7 @@ namespace HOGDescriptorBindings {
1010
std::shared_ptr<cv::HOGDescriptor> hog;
1111

1212
ComputeWorker( std::shared_ptr<cv::HOGDescriptor> hog) {
13-
std::cout << "ComputeWorker" << std::endl;
1413
this->hog = hog;
15-
std::cout << "ComputeWorker done" << std::endl;
1614
}
1715

1816
cv::Mat img;
@@ -23,9 +21,7 @@ namespace HOGDescriptorBindings {
2321
std::vector<float> descriptors;
2422

2523
std::string executeCatchCvExceptionWorker() {
26-
std::cout << "i am here" << std::endl;
2724
hog->compute(img, descriptors, winStride, padding, locations);
28-
std::cout << "compute done" << std::endl;
2925
return "";
3026
}
3127

0 commit comments

Comments
 (0)