We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5813354 commit 1d798e6Copy full SHA for 1d798e6
example_08-03.cpp
@@ -1,11 +1,14 @@
1
-// alphablend <imageA> <image B> <x> <y> <width> <height> <alpha> <beta>
+// Example 8-3. Using cv::FileStorage to read a .yml file
2
//
3
#include <opencv2/opencv.hpp>
4
5
using namespace std;
6
7
int main(int argc, char** argv) {
8
-
+ cout << "\nExample 8-3. Using cv::FileStorage to read a .yml file"
9
+ << "\nCall:\n"
10
+ << argv[0] << endl;
11
+
12
cv::FileStorage fs2("test.yml", cv::FileStorage::READ);
13
14
// first method: use (type) operator on FileNode.
0 commit comments