Added the File Input and Output using XML and YAML files tutorial.
authorBernat Gabor <no@email>
Wed, 27 Jul 2011 11:35:11 +0000 (11:35 +0000)
committerBernat Gabor <no@email>
Wed, 27 Jul 2011 11:35:11 +0000 (11:35 +0000)
doc/conf.py
doc/tutorials/core/file_input_output_with_xml_yml/file_input_output_with_xml_yml.rst [new file with mode: 0644]
doc/tutorials/core/table_of_content_core/images/file_input_output_with_xml_yml.png [new file with mode: 0644]
doc/tutorials/core/table_of_content_core/table_of_content_core.rst
samples/cpp/tutorial_code/core/file_input_output/file_input_output.cpp

index 88a5c26..f54919f 100644 (file)
@@ -354,6 +354,7 @@ extlinks = {'cvt_color': ('http://opencv.willowgarage.com/documentation/cpp/imgp
             'utilitysystemfunctions':('http://opencv.itseez.com/modules/core/doc/utility_and_system_functions_and_macros.html#%s', None),
             'imgprocfilter':('http://opencv.itseez.com/modules/imgproc/doc/filtering.html#%s', None),
             'svms':('http://opencv.itseez.com/modules/ml/doc/support_vector_machines.html#%s', None),
+            'xmlymlpers':('http://opencv.itseez.com/modules/core/doc/xml_yaml_persistence.html#%s', None),
             'point_polygon_test' : ('http://opencv.willowgarage.com/documentation/cpp/imgproc_structural_analysis_and_shape_descriptors.html#cv-pointpolygontest%s', None)
            }
 
diff --git a/doc/tutorials/core/file_input_output_with_xml_yml/file_input_output_with_xml_yml.rst b/doc/tutorials/core/file_input_output_with_xml_yml/file_input_output_with_xml_yml.rst
new file mode 100644 (file)
index 0000000..01ded5f
--- /dev/null
@@ -0,0 +1,280 @@
+.. _fileInputOutputXMLYAML:\r
+\r
+File Input and Output using XML and YAML files\r
+**********************************************\r
+\r
+Goal\r
+==== \r
+\r
+You'll find answers for the following questions: \r
+\r
+.. container:: enumeratevisibleitemswithsquare\r
+\r
+   + How to print and read text entries to a file and OpenCV using YAML or XML files?\r
+   + How to do the same for OpenCV data structures?\r
+   + How to do this for your data structures?\r
+   + Usage of OpenCV data structures such as :xmlymlpers:`FileStorage <filestorage>`, :xmlymlpers:`FileNode <filenode>` or :xmlymlpers:`FileNodeIterator <filenodeiterator>`.\r
+\r
+Source code\r
+===========\r
+\r
+You can :download:`download this from here <../../../../samples/cpp/tutorial_code/core/file_input_output/file_input_output.cpp>` or find it in the :file:`samples/cpp/tutorial_code/core/file_input_output/file_input_output.cpp` of the OpenCV source code library. \r
+\r
+Here's a sample code of how to achieve all the stuff enumerated at the goal list.\r
+\r
+.. literalinclude:: ../../../../samples/cpp/tutorial_code/core/file_input_output/file_input_output.cpp\r
+   :language: cpp\r
+   :linenos:\r
+   :tab-width: 4\r
+   :lines: 1-7, 21-154\r
+\r
+Explanation\r
+===========\r
+\r
+Here we talk only about XML and YAML file inputs. Your output (and its respective input) file may have only one of these extensions and the structure coming from this. They are two kinds of data structures you may serialize: *mappings* (like the STL map) and *element sequence* (like the STL vector>. The difference between these is that in a map every element has a unique name through what you may access it. For sequences you need to go through them to query a specific item. \r
+\r
+1. **XML\\YAML File Open and Close.** Before you write any content to such file you need to open it and at the end to close it. The XML\YAML data structure in OpenCV is :xmlymlpers:`FileStorage <filestorage>`. To specify that this structure to which file binds on your hard drive you can use either its constructor or the *open()* function of this: \r
+\r
+   .. code-block:: cpp\r
+\r
+      string filename = "I.xml";\r
+      FileStorage fs(filename, FileStorage::WRITE);\r
+      \\...\r
+      fs.open(filename, FileStorage::READ);\r
+\r
+   Either one of this you use the second argument is a constant specifying the type of operations you'll be able to on them: WRITE, READ or APPEND. The extension specified in the file name also determinates the output format that will be used. The output may be even compressed if you specify an extension such as *.xml.gz*. \r
+\r
+   The file automatically closes when the :xmlymlpers:`FileStorage <filestorage>` objects is destroyed. However, you may explicitly call for this by using the *release* function: \r
+   \r
+   .. code-block:: cpp\r
+\r
+      fs.release();                                       // explicit close\r
+\r
+#. **Input and Output of text and numbers.** The data structure uses the same << output operator that the STL library. For outputting any type of data structure we need first to specify its name. We do this by just simply printing out the name of this. For basic types you may follow this with the print of the value : \r
+\r
+   .. code-block:: cpp\r
+\r
+      fs << "iterationNr" << 100;\r
+\r
+   Reading in is a simple addressing (via the [] operator) and casting operation or a read via the >> operator : \r
+\r
+   .. code-block:: cpp\r
+\r
+      int itNr; \r
+      fs["iterationNr"] >> itNr;\r
+      itNr = (int) fs["iterationNr"];\r
+\r
+#. **Input\\Output of OpenCV Data structures.** Well these behave exactly just as the basic C++ types: \r
+\r
+   .. code-block:: cpp\r
+\r
+      Mat R = Mat_<uchar >::eye  (3, 3),\r
+          T = Mat_<double>::zeros(3, 1);\r
+\r
+      fs << "R" << R;                                      // Write cv::Mat\r
+      fs << "T" << T;\r
+\r
+      fs["R"] >> R;                                      // Read cv::Mat\r
+      fs["T"] >> T;\r
+\r
+#. **Input\\Output of vectors (arrays) and associative maps.** As I mentioned beforehand we can output maps and sequences (array, vector) too. Again we first print the name of the variable and then we have to specify if our output is either a sequence or map. \r
+\r
+   For sequence before the first element print the "[" character and after the last one the "]" character:\r
+\r
+   .. code-block:: cpp\r
+\r
+      fs << "strings" << "[";                              // text - string sequence\r
+      fs << "image1.jpg" << "Awesomeness" << "baboon.jpg";\r
+      fs << "]";                                           // close sequence\r
+\r
+   For maps the drill is the same however now we use the "{" and "}" delimiter characters:\r
+\r
+   .. code-block:: cpp\r
+\r
+        fs << "Mapping";                              // text - mapping\r
+        fs << "{" << "One" << 1;\r
+        fs <<        "Two" << 2 << "}";\r
+\r
+   To read from these we use the :xmlymlpers:`FileNode <filenode>` and the :xmlymlpers:`FileNodeIterator <filenodeiterator>` data structures. The [] operator of the :xmlymlpers:`FileStorage <filestorage>` class returns a :xmlymlpers:`FileNode <filenode>` data type. If the node is sequential we can use the :xmlymlpers:`FileNodeIterator <filenodeiterator>` to iterate through the items: \r
+\r
+   .. code-block:: cpp\r
+\r
+      FileNode n = fs["strings"];                         // Read string sequence - Get node\r
+      if (n.type() != FileNode::SEQ)\r
+      {\r
+          cerr << "strings is not a sequence! FAIL" << endl;\r
+          return 1;\r
+      }\r
+\r
+      FileNodeIterator it = n.begin(), it_end = n.end(); // Go through the node\r
+      for (; it != it_end; ++it)\r
+          cout << (string)*it << endl;\r
+\r
+   For maps you can use the [] operator again to acces the given item (or the >> operator too):\r
+\r
+   .. code-block:: cpp\r
+\r
+      n = fs["Mapping"];                                // Read mappings from a sequence\r
+      cout << "Two  " << (int)(n["Two"]) << "; "; \r
+      cout << "One  " << (int)(n["One"]) << endl << endl; \r
+\r
+#. **Read and write your own data structures.** Suppose you have a data structure such as:\r
+\r
+   .. code-block:: cpp\r
+\r
+      class MyData\r
+      {\r
+      public:\r
+            MyData() : A(0), X(0), id() {}\r
+      public:   // Data Members\r
+         int A;\r
+         double X;\r
+         string id;\r
+      };\r
+\r
+   It's possible to serialize this through the OpenCV I/O XML/YAML interface (just as in case of the OpenCV data structures) by adding a read and a write function inside and outside of your class. For the inside part:\r
+\r
+   .. code-block:: cpp\r
+\r
+      void write(FileStorage& fs) const                        //Write serialization for this class\r
+      {\r
+        fs << "{" << "A" << A << "X" << X << "id" << id << "}";\r
+      }\r
+\r
+      void read(const FileNode& node)                          //Read serialization for this class\r
+      {\r
+        A = (int)node["A"];\r
+        X = (double)node["X"];\r
+        id = (string)node["id"];\r
+      }\r
+\r
+   Then you need to add the following functions definitions outside the class: \r
+\r
+   .. code-block:: cpp\r
+\r
+      void write(FileStorage& fs, const std::string&, const MyData& x)\r
+      {\r
+      x.write(fs);\r
+      }\r
+\r
+      void read(const FileNode& node, MyData& x, const MyData& default_value = MyData())\r
+      {\r
+      if(node.empty())\r
+          x = default_value;\r
+      else\r
+          x.read(node);\r
+      }\r
+\r
+   Here you can observe that in the read section we defined what happens if the user tries to read a non-existing node. In this case we just return the default initialization value, however a more verbose solution would be to return for instance a minus one value for an object ID.\r
+\r
+   Once you added these four functions use the >> operator for write and the << operator for read:\r
+\r
+   .. code-block:: cpp\r
+\r
+      MyData m(1);\r
+      fs << "MyData" << m;                                // your own data structures\r
+      fs["MyData"] >> m;                                 // Read your own structure_\r
+\r
+   Or to try out reading a non-existing read: \r
+\r
+   .. code-block:: cpp\r
+\r
+      fs["NonExisting"] >> m;   // Do not add a fs << "NonExisting" << m command for this to work \r
+      cout << endl << "NonExisting = " << endl << m << endl;\r
+\r
+Result\r
+======\r
+\r
+Well mostly we just print out the defined numbers. On the screen of your console you could see: \r
+\r
+.. code-block:: bash\r
+\r
+   Write Done.\r
+\r
+   Reading:\r
+   100image1.jpg\r
+   Awesomeness\r
+   baboon.jpg\r
+   Two  2; One  1\r
+\r
+\r
+   R = [1, 0, 0;\r
+     0, 1, 0;\r
+     0, 0, 1]\r
+   T = [0; 0; 0]\r
+\r
+   MyData =\r
+   { id = mydata1234, X = 3.14159, A = 97}\r
+\r
+   Attempt to read NonExisting (should initialize the data structure with its default).\r
+   NonExisting =\r
+   { id = , X = 0, A = 0}\r
+\r
+   Tip: Open up output.xml with a text editor to see the serialized data.\r
+\r
+Nevertheless, it's much more interesting what you may see in the output xml file: \r
+\r
+.. code-block:: xml\r
+\r
+   <?xml version="1.0"?>\r
+   <opencv_storage>\r
+   <iterationNr>100</iterationNr>\r
+   <strings>\r
+     image1.jpg Awesomeness baboon.jpg</strings>\r
+   <Mapping>\r
+     <One>1</One>\r
+     <Two>2</Two></Mapping>\r
+   <R type_id="opencv-matrix">\r
+     <rows>3</rows>\r
+     <cols>3</cols>\r
+     <dt>u</dt>\r
+     <data>\r
+       1 0 0 0 1 0 0 0 1</data></R>\r
+   <T type_id="opencv-matrix">\r
+     <rows>3</rows>\r
+     <cols>1</cols>\r
+     <dt>d</dt>\r
+     <data>\r
+       0. 0. 0.</data></T>\r
+   <MyData>\r
+     <A>97</A>\r
+     <X>3.1415926535897931e+000</X>\r
+     <id>mydata1234</id></MyData>\r
+   </opencv_storage>\r
+\r
+Or the YAML file: \r
+\r
+.. code-block:: yaml\r
+\r
+   %YAML:1.0\r
+   iterationNr: 100\r
+   strings:\r
+      - "image1.jpg"\r
+      - Awesomeness\r
+      - "baboon.jpg"\r
+   Mapping:\r
+      One: 1\r
+      Two: 2\r
+   R: !!opencv-matrix\r
+      rows: 3\r
+      cols: 3\r
+      dt: u\r
+      data: [ 1, 0, 0, 0, 1, 0, 0, 0, 1 ]\r
+   T: !!opencv-matrix\r
+      rows: 3\r
+      cols: 1\r
+      dt: d\r
+      data: [ 0., 0., 0. ]\r
+   MyData:\r
+      A: 97\r
+      X: 3.1415926535897931e+000\r
+      id: mydata1234\r
+\r
+You may observe a runtime instance of this on the `YouTube here <https://www.youtube.com/watch?v=A4yqVnByMMM>`_ .\r
+\r
+.. raw:: html\r
+\r
+  <div align="center">\r
+  <iframe title="File Input and Output using XML and YAML files in OpenCV" width="560" height="349" src="http://www.youtube.com/embed/A4yqVnByMMM?rel=0&loop=1" frameborder="0" allowfullscreen align="middle"></iframe>\r
+  </div>\r
+\r
diff --git a/doc/tutorials/core/table_of_content_core/images/file_input_output_with_xml_yml.png b/doc/tutorials/core/table_of_content_core/images/file_input_output_with_xml_yml.png
new file mode 100644 (file)
index 0000000..24ae4fd
Binary files /dev/null and b/doc/tutorials/core/table_of_content_core/images/file_input_output_with_xml_yml.png differ
index 6d64fd9..845fe62 100644 (file)
@@ -110,7 +110,7 @@ Here you will learn the about the basic building blocks of the library. A must r
   .. cssclass:: toctableopencv
 
   =============== ======================================================
-   |Beginners_7|  **Title:** :ref:`Drawing_2`
+   |Beginners_7|  **Title:** :ref:`Drawing_2`
 
                   *Compatibility:* > OpenCV 2.0
 
@@ -129,7 +129,7 @@ Here you will learn the about the basic building blocks of the library. A must r
   .. cssclass:: toctableopencv
 
   =============== ======================================================
-   |DiscFourTr|   **Title:** :ref:`discretFourierTransform`
+   |DiscFourTr|   **Title:** :ref:`discretFourierTransform`
 
                   *Compatibility:* > OpenCV 2.0
 
@@ -143,6 +143,25 @@ Here you will learn the about the basic building blocks of the library. A must r
                    :height: 90pt
                    :width:  90pt
 
++
+  .. tabularcolumns:: m{100pt} m{300pt}
+  .. cssclass:: toctableopencv
+
+  =============== ======================================================
+  |FileIOXMLYAML| **Title:** :ref:`fileInputOutputXMLYAML`
+
+                  *Compatibility:* > OpenCV 2.0
+
+                  *Author:* |Author_BernatG|
+
+                  You will see how to use the :xmlymlpers:`FileStorage <filestorage>` data structure of OpenCV to write and read data to XML or YAML file format.
+
+  =============== ======================================================
+
+  .. |FileIOXMLYAML| image:: images/file_input_output_with_xml_yml.png
+                   :height: 90pt
+                   :width:  90pt
+
 .. raw:: latex
 
    \pagebreak
@@ -157,4 +176,5 @@ Here you will learn the about the basic building blocks of the library. A must r
    ../basic_geometric_drawing/basic_geometric_drawing
    ../random_generator_and_text/random_generator_and_text
    ../mat-mask-operations/mat-mask-operations
-   ../discrete_fourier_transform/discrete_fourier_transform
\ No newline at end of file
+   ../discrete_fourier_transform/discrete_fourier_transform
+   ../file_input_output_with_xml_yml/file_input_output_with_xml_yml
\ No newline at end of file
index 7083cc0..eedf3f4 100644 (file)
@@ -1,41 +1,40 @@
-#include "opencv2/core/core.hpp"
+#include <opencv2/core/core.hpp>
 #include <iostream>
 #include <string>
 
-using namespace std;
 using namespace cv;
+using namespace std;
 
 void help(char** av)
 {
-  cout << endl 
-       << av[0] << " shows the usage of the OpenCV serialization functionality."         << endl
-       << "usage: "                                                                      << endl
-       <<  av[0] << " outputfile.yml.gz"                                                 << endl
-       << "The output file may be either XML (xml) or YAML (yml/yaml). You can even compress it by "
-       << "specifying this in its extension like xml.gz yaml.gz etc... "                  << endl
-      << "With FileStorage you can serialize objects in OpenCV by using the << and >> operators" << endl
-      << "For example: - create a class and have it serialized"                         << endl
-      << "             - use it to read and write matrices."                            << endl;
+    cout << endl 
+        << av[0] << " shows the usage of the OpenCV serialization functionality."         << endl
+        << "usage: "                                                                      << endl
+        <<  av[0] << " outputfile.yml.gz"                                                 << endl
+        << "The output file may be either XML (xml) or YAML (yml/yaml). You can even compress it by "
+        << "specifying this in its extension like xml.gz yaml.gz etc... "                  << endl
+        << "With FileStorage you can serialize objects in OpenCV by using the << and >> operators" << endl
+        << "For example: - create a class and have it serialized"                         << endl
+        << "             - use it to read and write matrices."                            << endl;
 }
 
 class MyData
 {
 public:
-  MyData() : A(0), X(0), id()
-  {}
-  explicit MyData(int) : A(97), X(CV_PI), id("mydata1234") // explicit to avoid implicit conversion
-  {}
-
-  void write(FileStorage& fs) const                        //Write serialization for this class
-  {
-    fs << "{" << "A" << A << "X" << X << "id" << id << "}";
-  }
-  void read(const FileNode& node)                          //Read serialization for this class
-  {
-    A = (int)node["A"];
-    X = (double)node["X"];
-    id = (string)node["id"];
-  }
+    MyData() : A(0), X(0), id()
+    {}
+    explicit MyData(int) : A(97), X(CV_PI), id("mydata1234") // explicit to avoid implicit conversion
+    {}
+    void write(FileStorage& fs) const                        //Write serialization for this class
+    {
+        fs << "{" << "A" << A << "X" << X << "id" << id << "}";
+    }
+    void read(const FileNode& node)                          //Read serialization for this class
+    {
+        A = (int)node["A"];
+        X = (double)node["X"];
+        id = (string)node["id"];
+    }
 public:   // Data Members
     int A;
     double X;
@@ -45,13 +44,13 @@ public:   // Data Members
 //These write and read functions must be defined for the serialization in FileStorage to work
 void write(FileStorage& fs, const std::string&, const MyData& x)
 {
-  x.write(fs);
+    x.write(fs);
 }
 void read(const FileNode& node, MyData& x, const MyData& default_value = MyData()){
-  if(node.empty())
-    x = default_value;
-  else
-    x.read(node);
+    if(node.empty())
+        x = default_value;
+    else
+        x.read(node);
 }
 
 // This function will print our custom class to the console
@@ -65,80 +64,91 @@ ostream& operator<<(ostream& out, const MyData& m)
 
 int main(int ac, char** av)
 {
-  if (ac != 2)
-  {
-    help(av);
-    return 1;
-  }
-
-  string filename = av[1];
-
-  //write
-  {
-    Mat R = Mat_<double>::eye(3, 3),
-        T = Mat_<double>::zeros(3, 1);
-    
-    MyData m(1);
-
-    FileStorage fs(filename, FileStorage::WRITE);
-
-    
-    fs << "strings" << "[";
-    fs << "image1.jpg" << "Awesomeness" << "baboon.jpg";
-    fs << "]";
-
-    fs << "R" << R;
-    fs << "T" << T;
-
-    fs << "MyData" << m;
-
-    cout << "Write Done." << endl;
-  }
-  
-  //read
-  {
-    cout << endl << "Reading: " << endl;
-    FileStorage fs(filename, FileStorage::READ);
-
-    if (!fs.isOpened())
+    if (ac != 2)
     {
-      cerr << "Failed to open " << filename << endl;
-      help(av);
-      return 1;
+        help(av);
+        return 1;
     }
 
-    FileNode n = fs["strings"];
-    if (n.type() != FileNode::SEQ)
-    {
-      cerr << "strings is not a sequence! FAIL" << endl;
-      return 1;
-    }
+    string filename = av[1];
+    { //write
+        Mat R = Mat_<uchar>::eye(3, 3),
+            T = Mat_<double>::zeros(3, 1);
+        MyData m(1);
 
-    
-    FileNodeIterator it = n.begin(), it_end = n.end();
-    for (; it != it_end; ++it)
-      cout << (string)*it << endl;
+        FileStorage fs(filename, FileStorage::WRITE);
 
-    MyData m;
-    Mat R, T;
+        fs << "iterationNr" << 100;
+        fs << "strings" << "[";                              // text - string sequence
+        fs << "image1.jpg" << "Awesomeness" << "baboon.jpg";
+        fs << "]";                                           // close sequence
+        
+        fs << "Mapping";                              // text - mapping
+        fs << "{" << "One" << 1;
+        fs <<        "Two" << 2 << "}";               
 
-    fs["R"] >> R;
-    fs["T"] >> T;
-    fs["MyData"] >> m;
+        fs << "R" << R;                                      // cv::Mat
+        fs << "T" << T;
 
-    cout << endl 
-        << "R = " << R << "\n";
-    cout << "T = " << T << endl << endl;
-    cout << "MyData = " << endl << m << endl << endl;
+        fs << "MyData" << m;                                // your own data structures
 
-     //Show default behavior for non existing nodes
-    cout << "Attempt to read NonExisting (should initialize the data structure with its default).";  
-    fs["NonExisting"] >> m;
-    cout << endl << "NonExisting = " << endl << m << endl;
-  }
+        fs.release();                                       // explicit close
+        cout << "Write Done." << endl;
+    }
 
-  cout << endl 
-       << "Tip: Open up " << filename << " with a text editor to see the serialized data." << endl;
+    {//read
+        cout << endl << "Reading: " << endl;
+        FileStorage fs; 
+        fs.open(filename, FileStorage::READ);
+
+        int itNr; 
+        //fs["iterationNr"] >> itNr;
+        itNr = (int) fs["iterationNr"];
+        cout << itNr;
+        if (!fs.isOpened())
+        {
+            cerr << "Failed to open " << filename << endl;
+            help(av);
+            return 1;
+        }
+
+        FileNode n = fs["strings"];                         // Read string sequence - Get node
+        if (n.type() != FileNode::SEQ)
+        {
+            cerr << "strings is not a sequence! FAIL" << endl;
+            return 1;
+        }
+
+        FileNodeIterator it = n.begin(), it_end = n.end(); // Go through the node
+        for (; it != it_end; ++it)
+            cout << (string)*it << endl;
+        
+        
+        n = fs["Mapping"];                                // Read mappings from a sequence
+        cout << "Two  " << (int)(n["Two"]) << "; "; 
+        cout << "One  " << (int)(n["One"]) << endl << endl; 
+        
+
+        MyData m;
+        Mat R, T;
+
+        fs["R"] >> R;                                      // Read cv::Mat
+        fs["T"] >> T;
+        fs["MyData"] >> m;                                 // Read your own structure_
+
+        cout << endl 
+            << "R = " << R << endl;
+        cout << "T = " << T << endl << endl;
+        cout << "MyData = " << endl << m << endl << endl;
+
+        //Show default behavior for non existing nodes
+        cout << "Attempt to read NonExisting (should initialize the data structure with its default).";  
+        fs["NonExisting"] >> m;
+        cout << endl << "NonExisting = " << endl << m << endl;
+    }
 
-  return 0;
-}
+    cout << endl 
+        << "Tip: Open up " << filename << " with a text editor to see the serialized data." << endl;
+
+    return 0;
+}
\ No newline at end of file