Class naming update
authorGrigory Serebryakov <grigory.serebryakov@itseez.com>
Tue, 26 Aug 2014 04:55:59 +0000 (08:55 +0400)
committerGrigory Serebryakov <grigory.serebryakov@itseez.com>
Tue, 26 Aug 2014 06:02:50 +0000 (10:02 +0400)
Documentation improvement
Bug in output format for JPG set fixed

apps/haartraining/createsamples.cpp
apps/haartraining/cvhaartraining.cpp
apps/haartraining/cvhaartraining.h
apps/haartraining/cvsamplesoutput.cpp
apps/haartraining/cvsamplesoutput.h
doc/user_guide/ug_traincascade.rst

index 4cfb790..dd15a5f 100644 (file)
@@ -225,7 +225,7 @@ int main( int argc, char* argv[] )
                 "Annotations are in a separate directory\n",
                 (( pngoutput ) ? "JPG" : "PNG") );
 
-        PngTrainingSetGenerator creator( infoname );
+        PngDatasetGenerator creator( infoname );
         creator.create( imagename, bgcolor, bgthreshold, bgfilename, num,
                         invert, maxintensitydev, maxxangle, maxyangle, maxzangle,
                         showsamples, width, height );
@@ -238,7 +238,7 @@ int main( int argc, char* argv[] )
                 "Output format: %s\n",
                 (( pngoutput ) ? "JPG" : "PNG") );
 
-        TestSamplesGenerator creator( infoname );
+        JpgDatasetGrenerator creator( infoname );
         creator.create( imagename, bgcolor, bgthreshold, bgfilename, num,
                         invert, maxintensitydev, maxxangle, maxyangle, maxzangle,
                         showsamples, width, height );
index 3d12eab..27483e6 100644 (file)
@@ -2942,13 +2942,13 @@ void cvCreateTrainingSamples( const char* filename,
 
 }
 
-SamplesGenerator::SamplesGenerator( IOutput* _writer )
+DatasetGenerator::DatasetGenerator( IOutput* _writer )
     :writer(_writer)
 {
 
 }
 
-void SamplesGenerator::showSamples(bool* show, CvMat *img) const
+void DatasetGenerator::showSamples(bool* show, CvMat *img) const
 {
     if( *show )
     {
@@ -2960,7 +2960,7 @@ void SamplesGenerator::showSamples(bool* show, CvMat *img) const
     }
 }
 
-void SamplesGenerator::create(const char* imgfilename, int bgcolor, int bgthreshold,
+void DatasetGenerator::create(const char* imgfilename, int bgcolor, int bgthreshold,
                               const char* bgfilename, int count,
                               int invert, int maxintensitydev,
                               double maxxangle, double maxyangle, double maxzangle,
@@ -3023,18 +3023,18 @@ void SamplesGenerator::create(const char* imgfilename, int bgcolor, int bgthresh
     }
 }
 
-SamplesGenerator::~SamplesGenerator()
+DatasetGenerator::~DatasetGenerator()
 {
     delete writer;
 }
 
 
-TestSamplesGenerator::TestSamplesGenerator(const char* filename)
-    :SamplesGenerator(IOutput::createOutput(filename,IOutput::JPG_TEST_SET))
+JpgDatasetGrenerator::JpgDatasetGrenerator(const char* filename)
+    :DatasetGenerator(IOutput::createOutput(filename,IOutput::JPG_TEST_SET))
 {
 }
 
-CvSize TestSamplesGenerator::scaleObjectSize(const CvSize& bgImgSize,
+CvSize JpgDatasetGrenerator::scaleObjectSize(const CvSize& bgImgSize,
                                              const CvSize& ,
                                              const CvSize& sampleSize) const
 {
@@ -3058,7 +3058,7 @@ CvSize TestSamplesGenerator::scaleObjectSize(const CvSize& bgImgSize,
     return cvSize( width, height );
 }
 
-CvRect SamplesGenerator::getObjectPosition(const CvSize& bgImgSize,
+CvRect DatasetGenerator::getObjectPosition(const CvSize& bgImgSize,
                                            const CvSize& imgSize,
                                            const CvSize& sampleSize) const
 {
@@ -3073,12 +3073,12 @@ CvRect SamplesGenerator::getObjectPosition(const CvSize& bgImgSize,
 }
 
 
-PngTrainingSetGenerator::PngTrainingSetGenerator(const char* filename)
-    :SamplesGenerator(IOutput::createOutput(filename,IOutput::PNG_TRAINING_SET))
+PngDatasetGenerator::PngDatasetGenerator(const char* filename)
+    :DatasetGenerator(IOutput::createOutput(filename,IOutput::PNG_TRAINING_SET))
 {
 }
 
-CvSize PngTrainingSetGenerator::scaleObjectSize( const CvSize& bgImgSize,
+CvSize PngDatasetGenerator::scaleObjectSize( const CvSize& bgImgSize,
                                                 const CvSize& imgSize,
                                                 const CvSize& ) const
 {
index f1e9318..77e4923 100644 (file)
@@ -202,17 +202,17 @@ void cvCreateTreeCascadeClassifier( const char* dirname,
                                     int maxtreesplits, int minpos, bool bg_vecfile = false );
 
 
-class SamplesGenerator
+class DatasetGenerator
 {
 public:
-    SamplesGenerator( IOutput* _writer );
+    DatasetGenerator( IOutput* _writer );
     void create( const char* imgfilename, int bgcolor, int bgthreshold,
                  const char* bgfilename, int count,
                  int invert, int maxintensitydev,
                  double maxxangle, double maxyangle, double maxzangle,
                  bool showsamples,
                  int winwidth, int winheight);
-    virtual ~SamplesGenerator();
+    virtual ~DatasetGenerator();
 private:
     virtual void showSamples( bool* showSamples, CvMat* img ) const;
 
@@ -226,20 +226,21 @@ private:
     IOutput* writer;
 };
 
-class TestSamplesGenerator: public SamplesGenerator
+/* Provides the functionality of test set generating */
+class JpgDatasetGrenerator: public DatasetGenerator
 {
 public:
-    TestSamplesGenerator(const char* filename);
+    JpgDatasetGrenerator(const char* filename);
 private:
     CvSize scaleObjectSize(const CvSize& bgImgSize,
                            const CvSize& ,
                            const CvSize& sampleSize) const;
 };
 
-class PngTrainingSetGenerator: public SamplesGenerator
+class PngDatasetGenerator: public DatasetGenerator
 {
 public:
-    PngTrainingSetGenerator(const char *filename);
+    PngDatasetGenerator(const char *filename);
 private:
     CvSize scaleObjectSize(const CvSize& bgImgSize,
                            const CvSize& imgSize ,
index ada852a..83eae58 100644 (file)
@@ -35,10 +35,10 @@ IOutput* IOutput::createOutput(const char *filename,
     IOutput* output = 0;
     switch (type) {
     case IOutput::PNG_TRAINING_SET:
-        output = new PngTrainingSetOutput();
+        output = new PngDatasetOutput();
         break;
     case IOutput::JPG_TEST_SET:
-        output = new TestSamplesOutput();
+        output = new JpgDatasetOutput();
         break;
     default:
 #if CV_VERBOSE
@@ -53,7 +53,7 @@ IOutput* IOutput::createOutput(const char *filename,
         return 0;
 }
 
-bool PngTrainingSetOutput::init( const char* annotationsListFileName )
+bool PngDatasetOutput::init( const char* annotationsListFileName )
 {
     IOutput::init( annotationsListFileName );
 
@@ -112,7 +112,7 @@ bool PngTrainingSetOutput::init( const char* annotationsListFileName )
     return true;
 }
 
-bool PngTrainingSetOutput::write( const CvMat& img,
+bool PngDatasetOutput::write( const CvMat& img,
                                   const CvRect& boundingBox )
 {
     CvRect bbox = scaleBoundingBox(cvGetSize(&img), boundingBox);
@@ -153,7 +153,7 @@ bool PngTrainingSetOutput::write( const CvMat& img,
     return true;
 }
 
-void PngTrainingSetOutput::writeImage(const CvMat &img) const
+void PngDatasetOutput::writeImage(const CvMat &img) const
 {
     CvSize origsize = cvGetSize(&img);
 
@@ -173,7 +173,7 @@ void PngTrainingSetOutput::writeImage(const CvMat &img) const
     return;
 }
 
-CvRect PngTrainingSetOutput::scaleBoundingBox(const CvSize& imgSize, const CvRect& bbox)
+CvRect PngDatasetOutput::scaleBoundingBox(const CvSize& imgSize, const CvRect& bbox)
 {
     double scale = MAX( (float) destImgWidth / imgSize.width,
                         (float) destImgHeight / imgSize.height );
@@ -231,7 +231,7 @@ bool IOutput::init(const char *filename)
     return true;
 }
 
-bool TestSamplesOutput::write( const CvMat& img,
+bool JpgDatasetOutput::write( const CvMat& img,
                                const CvRect& boundingBox )
 {
     sprintf( imgFileName, "%04d_%04d_%04d_%04d_%04d.jpg",
@@ -242,7 +242,7 @@ bool TestSamplesOutput::write( const CvMat& img,
              boundingBox.height );
 
    fprintf( annotationsList, "%s %d %d %d %d %d\n",
-            imgFullPath,
+            imgFileName,
             1,
             boundingBox.x,
             boundingBox.y,
index 9e8362f..90854ba 100644 (file)
@@ -3,16 +3,16 @@
 
 #include "ioutput.h"
 
-class PngTrainingSetOutput: public IOutput
+class PngDatasetOutput: public IOutput
 {
     friend IOutput* IOutput::createOutput(const char *filename, OutputType type);
 public:
     virtual bool write( const CvMat& img,
                         const CvRect& boundingBox);
 
-    virtual ~PngTrainingSetOutput(){}
+    virtual ~PngDatasetOutput(){}
 private:
-    PngTrainingSetOutput()
+    PngDatasetOutput()
         : extension("png")
         , destImgWidth(640)
         , destImgHeight(480)
@@ -36,14 +36,14 @@ private:
     int destImgHeight ;
 };
 
-class TestSamplesOutput: public IOutput
+class JpgDatasetOutput: public IOutput
 {
     friend IOutput* IOutput::createOutput(const char *filename, OutputType type);
 public:
     virtual bool write( const CvMat& img,
                         const CvRect& boundingBox );
-    virtual ~TestSamplesOutput(){}
+    virtual ~JpgDatasetOutput(){}
 private:
-    TestSamplesOutput(){}
+    JpgDatasetOutput(){}
 };
 #endif // CVSAMPLESOUTPUT_H
index b6d861e..46b7583 100644 (file)
@@ -6,7 +6,7 @@ Cascade Classifier Training
 
 Introduction
 ============
-The work with a cascade classifier inlcudes two major stages: training and detection.
+The work with a cascade classifier includes two major stages: training and detection.
 Detection stage is described in a documentation of ``objdetect`` module of general OpenCV documentation. Documentation gives some basic information about cascade classifier.
 Current guide is describing how to train a cascade classifier: preparation of a training data and running the training application.
 
@@ -14,26 +14,30 @@ Important notes
 ---------------
 There are two applications in OpenCV to train cascade classifier: ``opencv_haartraining`` and ``opencv_traincascade``. ``opencv_traincascade`` is a newer version, written in C++ in accordance to OpenCV 2.x API. But the main difference between this two applications is that ``opencv_traincascade`` supports both Haar [Viola2001]_ and LBP [Liao2007]_ (Local Binary Patterns) features. LBP features are integer in contrast to Haar features, so both training and detection with LBP are several times faster then with Haar features. Regarding the LBP and Haar detection quality, it depends on training: the quality of training dataset first of all and training parameters too. It's possible to train a LBP-based classifier that will provide almost the same quality as Haar-based one.
 
-``opencv_traincascade`` and ``opencv_haartraining`` store the trained classifier in different file formats. Note, the newer cascade detection interface (see ``CascadeClassifier`` class in ``objdetect`` module) support both formats. ``opencv_traincascade`` can save (export) a trained cascade in the older format. But ``opencv_traincascade`` and ``opencv_haartraining`` can not load (import) a classifier in another format for the futher training after interruption.
+``opencv_traincascade`` and ``opencv_haartraining`` store the trained classifier in different file formats. Note, the newer cascade detection interface (see ``CascadeClassifier`` class in ``objdetect`` module) support both formats. ``opencv_traincascade`` can save (export) a trained cascade in the older format. But ``opencv_traincascade`` and ``opencv_haartraining`` can not load (import) a classifier in another format for the further training after interruption.
 
 Note that ``opencv_traincascade`` application can use TBB for multi-threading. To use it in multicore mode OpenCV must be built with TBB.
 
-Also there are some auxilary utilities related to the training.
+Also there are some auxiliary utilities related to the training.
 
     * ``opencv_createsamples`` is used to prepare a training dataset of positive and test samples. ``opencv_createsamples`` produces dataset of positive samples in a format that is supported by both ``opencv_haartraining`` and ``opencv_traincascade`` applications. The output is a file with \*.vec extension, it is a binary format which contains images.
 
     * ``opencv_performance`` may be used to evaluate the quality of classifiers, but for trained by ``opencv_haartraining`` only. It takes a collection of marked up images, runs the classifier and reports the performance, i.e. number of found objects, number of missed objects, number of false alarms and other information.
 
-Since ``opencv_haartraining`` is an obsolete application, only ``opencv_traincascade`` will be described futher. ``opencv_createsamples`` utility is  needed to prepare a training data for ``opencv_traincascade``, so it will be described too.
+Since ``opencv_haartraining`` is an obsolete application, only ``opencv_traincascade`` will be described further. ``opencv_createsamples`` utility is  needed to prepare a training data for ``opencv_traincascade``, so it will be described too.
 
 
+``opencv_createsamples`` utility
+================================
+An ``opencv_createsamples`` utility provides functionality for dataset generating, writing and viewing. The term *dataset* is used here for both training set and test set.
+
 Training data preparation
 =========================
 For training we need a set of samples. There are two types of samples: negative and positive. Negative samples correspond to non-object images. Positive samples correspond to images with detected objects. Set of negative samples must be prepared manually, whereas set of positive samples is created using ``opencv_createsamples`` utility.
 
 Negative Samples
 ----------------
-Negative samples are taken from arbitrary images. These images must not contain detected objects. Negative samples are enumerated in a special file. It is a text file in which each line contains an image filename (relative to the directory of the description file) of negative sample image. This file must be created manually. Note that negative samples and sample images are also called background samples or background samples images, and are used interchangeably in this document. Described images may be of different sizes. But each image should be (but not nessesarily) larger then a training window size, because these images are used to subsample negative image to the training size.
+Negative samples are taken from arbitrary images. These images must not contain detected objects. Negative samples are enumerated in a special file. It is a text file in which each line contains an image filename (relative to the directory of the description file) of negative sample image. This file must be created manually. Note that negative samples and sample images are also called background samples or background samples images, and are used interchangeably in this document. Described images may be of different sizes. But each image should be (but not necessarily) larger then a training window size, because these images are used to subsample negative image to the training size.
 
 An example of description file:
 
@@ -57,7 +61,7 @@ Positive Samples
 ----------------
 Positive samples are created by ``opencv_createsamples`` utility. They may be created from a single image with object or from a collection of previously marked up images.
 
-Please note that you need a large dataset of positive samples before you give it to the mentioned utility, because it only applies perspective transformation. For example you may need only one positive sample for absolutely rigid object like an OpenCV logo, but you definetely need hundreds and even thousands of positive samples for faces. In the case of faces you should consider all the race and age groups, emotions and perhaps beard styles.
+Please note that you need a large dataset of positive samples before you give it to the mentioned utility, because it only applies perspective transformation. For example you may need only one positive sample for absolutely rigid object like an OpenCV logo, but you definitely need hundreds and even thousands of positive samples for faces. In the case of faces you should consider all the race and age groups, emotions and perhaps beard styles.
 
 So, a single object image may contain a company logo. Then a large set of positive samples is created from the given object image by random rotating, changing the logo intensity as well as placing the logo on arbitrary background. The amount and range of randomness can be controlled by command line arguments of ``opencv_createsamples`` utility.
 
@@ -123,10 +127,11 @@ Command line arguments:
 
 The ``opencv_createsamples`` utility may work in a number of modes, namely:
 
-* Creating training set from a single image and a collection of backgrounds with a single ``vec`` file as an output;
+* Creating training set from a single image and a collection of backgrounds:
+    * with a single ``vec`` file as an output;
+    * with a collection of JPG images and a file with annotations list as an output;
+    * with a collection of PNG images and associated files with annotations as an output;
 * Converting the marked-up collection of samples into a ``vec`` format;
-* Creating training set from a single image, as specified above, but with a collection of PNG images and associated annotation files as a result;
-* Creating test set that consists of JPG samples collection and a signle file with annotations;
 * Showing the content of the ``vec`` file.
 
 Creating training set from a single image and a collection of backgrounds with a single ``vec`` file as an output
@@ -135,47 +140,16 @@ Creating training set from a single image and a collection of backgrounds with a
 The following procedure is used to create a sample object instance:
 The source image is rotated randomly around all three axes. The chosen angle is limited my ``-max?angle``. Then pixels having the intensity from [``bg_color-bg_color_threshold``; ``bg_color+bg_color_threshold``] range are interpreted as transparent. White noise is added to the intensities of the foreground. If the ``-inv`` key is specified then foreground pixel intensities are inverted. If ``-randinv`` key is specified then algorithm randomly selects whether inversion should be applied to this sample. Finally, the obtained image is placed onto an arbitrary background from the background description file, resized to the desired size specified by ``-w`` and ``-h`` and stored to the vec-file, specified by the ``-vec`` command line option.
 
-Converting the marked-up collection of samples into a ``vec`` format
---------------------------------------------------------------------
-
-Positive samples also may be obtained from a collection of previously marked up images. This collection is described by a text file similar to background description file. Each line of this file corresponds to an image. The first element of the line is the filename. It is followed by the number of object instances. The following numbers are the coordinates of objects bounding rectangles (x, y, width, height).
-
-An example of description file:
-
-Directory structure:
-
-    .. code-block:: text
-
-        /img
-          img1.jpg
-          img2.jpg
-        info.dat
-
-File info.dat:
-
-    .. code-block:: text
-
-        img/img1.jpg  1  140 100 45 45
-        img/img2.jpg  2  100 200 50 50   50 30 25 25
-
-Image img1.jpg contains single object instance with the following coordinates of bounding rectangle: (140, 100, 45, 45). Image img2.jpg contains two object instances.
-
-In order to create positive samples from such collection, ``-info`` argument should be specified instead of ``-img``:
-
-* ``-info <collection_file_name>``
-
-    Description file of marked up images collection.
-
-The scheme of samples creation in this case is as follows. The object instances are taken from images. Then they are resized to target samples size and stored in output vec-file. No distortion is applied, so the only affecting arguments are ``-w``, ``-h``, ``-show`` and ``-num``.
-
-Creating training set from a single image, but with a collection of PNG images and associated annotation files as a result
---------------------------------------------------------------------------------------------------------------------------
+Creating training set as a collection of JPG images
+---------------------------------------------------
 
 To obtain such behaviour the ``-img``, ``-bg`` and ``-info`` keys should be specified. The file name specified with ``-info`` key should include at least one level of directory hierarchy, that directory
-will be used as the top-level dir for the training set.
+will be used as the top-level directory for the training set.
 For example, with the ``opencv_createsamples`` called as following:
 
-    opencv_createsamples -img /home/user/logo.png -bg /home/user/bg.txt -info /home/user/annotations.lst -pngoutput -maxxangle 0.1 -maxyangle 0.1 -maxzangle 0.1
+    .. code-block:: text
+
+        opencv_createsamples -img /home/user/logo.png -bg /home/user/bg.txt -info /home/user/annotations.lst -pngoutput -maxxangle 0.1 -maxyangle 0.1 -maxzangle 0.1
 
 The output will have the following structure:
 
@@ -208,9 +182,8 @@ And ``annotations.lst`` file containing the list of all annotations file:
         createsamples/annotations/0001_0109_0209_0195_0139.txt
         createsamples/annotations/0002_0241_0245_0139_0100.txt
 
-
-Creating test set that consists of JPG samples collection and a signle file with annotations
---------------------------------------------------------------------------------------------
+Creating test set as a collection of JPG images
+-----------------------------------------------
 
 This variant of ``opencv_createsamples`` usage is very similar to the previous one, but generates the output in a different format;
 
@@ -229,6 +202,39 @@ File info.dat:
         img1.jpg  1  140 100 45 45
         img2.jpg  2  100 200 50 50   50 30 25 25
 
+Converting the marked-up collection of samples into a ``vec`` format
+--------------------------------------------------------------------
+
+Positive samples also may be obtained from a collection of previously marked up images. This collection is described by a text file similar to background description file. Each line of this file corresponds to an image. The first element of the line is the filename. It is followed by the number of object instances. The following numbers are the coordinates of objects bounding rectangles (x, y, width, height).
+
+An example of description file:
+
+Directory structure:
+
+    .. code-block:: text
+
+        /img
+          img1.jpg
+          img2.jpg
+        info.dat
+
+File info.dat:
+
+    .. code-block:: text
+
+        img/img1.jpg  1  140 100 45 45
+        img/img2.jpg  2  100 200 50 50   50 30 25 25
+
+Image img1.jpg contains single object instance with the following coordinates of bounding rectangle: (140, 100, 45, 45). Image img2.jpg contains two object instances.
+
+In order to create positive samples from such collection, ``-info`` argument should be specified instead of ``-img``:
+
+* ``-info <collection_file_name>``
+
+    Description file of marked up images collection.
+
+The scheme of samples creation in this case is as follows. The object instances are taken from images. Then they are resized to target samples size and stored in output vec-file. No distortion is applied, so the only affecting arguments are ``-w``, ``-h``, ``-show`` and ``-num``.
+
 Showing the content of the ``vec`` file
 ---------------------------------------
 
@@ -240,7 +246,7 @@ Example of vec-file is available here ``opencv/data/vec_files/trainingfaces_24-2
 
 Cascade Training
 ================
-The next step is the training of classifier. As mentioned above ``opencv_traincascade`` or ``opencv_haartraining`` may be used to train a cascade classifier, but only the newer ``opencv_traincascade`` will be described futher.
+The next step is the training of classifier. As mentioned above ``opencv_traincascade`` or ``opencv_haartraining`` may be used to train a cascade classifier, but only the newer ``opencv_traincascade`` will be described further.
 
 Command line arguments of ``opencv_traincascade`` application grouped by purposes: