1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

core: FileStorage - add support for writing vector<String> with bindings (#11883)

* core: FileStorage - add support for writing vector<String> with bindings

* python: extend persistence test for string sequences
This commit is contained in:
Pavel Rojtberg
2018-07-17 12:38:48 +02:00
committed by Vadim Pisarevsky
parent 5e31c82b5b
commit 3f65924c45
3 changed files with 19 additions and 3 deletions
@@ -444,7 +444,9 @@ public:
/// @overload
CV_WRAP void write(const String& name, const String& val);
/// @overload
CV_WRAP void write(const String& name, InputArray val);
CV_WRAP void write(const String& name, const Mat& val);
/// @overload
CV_WRAP void write(const String& name, const std::vector<String>& val);
/** @brief Writes a comment.