diff --git a/example_08-03.cpp b/example_08-03.cpp index fd62bfc..54533fe 100644 --- a/example_08-03.cpp +++ b/example_08-03.cpp @@ -1,11 +1,14 @@ -// alphablend +// Example 8-3. Using cv::FileStorage to read a .yml file // #include using namespace std; int main(int argc, char** argv) { - + cout << "\nExample 8-3. Using cv::FileStorage to read a .yml file" + << "\nCall:\n" + << argv[0] << endl; + cv::FileStorage fs2("test.yml", cv::FileStorage::READ); // first method: use (type) operator on FileNode.