From c95f3eff6e9939a6fd8bf73dac735ffe29230fed Mon Sep 17 00:00:00 2001 From: Bhanudutta Date: Sat, 21 Oct 2017 10:19:38 +0530 Subject: [PATCH] Added a couple of comments to the interface of traincascade.cpp in order to tell user about the usage of traincascade.cpp file and to learn how Github submitting works --- apps/traincascade/traincascade.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/traincascade/traincascade.cpp b/apps/traincascade/traincascade.cpp index 745e3054b5..6c3fc84b3e 100644 --- a/apps/traincascade/traincascade.cpp +++ b/apps/traincascade/traincascade.cpp @@ -4,6 +4,11 @@ using namespace std; using namespace cv; +/* +traincascade.cpp is the source file of the program used for cascade training. +User has to provide training input in form of posotive and negative training images, +and other data related to training in form of command line argument. +*/ int main( int argc, char* argv[] ) { CvCascadeClassifier classifier;