- 20 Jul, 2017 2 commits
-
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
- 12 Jul, 2017 2 commits
-
-
PkLab.net authored
-
Vladislav Sovrasov authored
-
- 28 Jun, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 26 Jun, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 23 May, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 26 Apr, 2017 1 commit
-
-
Alexander Alekhin authored
- persistence.cpp code expects special sizeof value for passed structures - this assumption is lead to memory corruption problems - fixed/workarounded test to prevent memory corruption on Linux 32-bit systems
-
- 14 Apr, 2017 1 commit
-
-
Yuriy Solovyov authored
-
- 02 Mar, 2017 2 commits
- 01 Mar, 2017 1 commit
-
-
Vladislav Sovrasov authored
-
- 17 Jan, 2017 1 commit
-
-
Vladislav Sovrasov authored
-
- 02 Jan, 2017 1 commit
-
-
Matt Bennett authored
Append zero to trailing decimal place for FileStorage JSON write of a float or double value (#7952) * Fix for FileStorage JSON write of a float or double value that has no fractional part; appends a zero character after the trailing decimal place to meet JSON standard. * strlen return to size_t type rather than unnecessary cast to int
-
- 08 Dec, 2016 1 commit
-
-
mshabunin authored
-
- 02 Dec, 2016 1 commit
-
-
mshabunin authored
-
- 02 Nov, 2016 2 commits
-
-
Vladislav Sovrasov authored
-
Vladislav Sovrasov authored
-
- 25 Oct, 2016 1 commit
-
-
fegorsch authored
In YAML 1.0 the colon is mandatory. See http://yaml.org/spec/1.0/#id2558635. This also allows prior releases to read YAML files created with the current version.
-
- 24 Aug, 2016 1 commit
-
-
MYLS authored
- one test for type_id; - another for comments in JSON;
-
- 19 Aug, 2016 1 commit
-
-
Pavel Vlasov authored
-
- 10 Aug, 2016 2 commits
- 05 Aug, 2016 2 commits
- 29 Jul, 2016 1 commit
-
-
MYLS authored
- use `@snippet` instead of `@code` in docs. - remove some functions that were not used.
-
- 19 Jul, 2016 4 commits
-
-
MYLS authored
Modified performance test and solve a problem caused by an enum type.
-
MYLS authored
-
Ilya Lavrenov authored
-
MYLS authored
Major changes: - modify the Base64 functions to compatible with `cvWriteRawData` and so on. - add a Base64 flag for FileStorage and outputs raw data in Base64 automatically. - complete all testing and documentation.
-
- 08 Jul, 2016 1 commit
-
-
Philipp Hasper authored
-
- 24 Jun, 2016 1 commit
-
-
MYLS authored
The three new functions: ```cpp void cvStartWriteRawData_Base64(::CvFileStorage * fs, const char* name, int len, const char* dt); void cvWriteRawData_Base64(::CvFileStorage * fs, const void* _data, int len); void cvEndWriteRawData_Base64(::CvFileStorage * fs); ``` Test is also updated. (And it's remarkable that there is a bug in `cvWriteReadData`.)
-
- 20 Jun, 2016 1 commit
-
-
MYLS authored
```cpp cvWriteMat_Base64(::cv::FileStorage & fs, ::cv::String const & name, ::cv::Mat const & mat) ``` becomes: ```cpp CV_EXPORTS void cvWriteMat_Base64(::CvFileStorage* fs, const char* name, const ::CvMat* mat); CV_EXPORTS void cvWriteMatND_Base64(::CvFileStorage* fs, const char* name, const ::CvMatND* mat); ```
-
- 18 Jun, 2016 5 commits
-
-
MYLS authored
Two test are still needed: 1. Verify the Base64 data. 2. Read an old YML file for compatibility test.
-
MYLS authored
-
MYLS authored
Two other test are still needed. 1. Verify the Base64 data. 2. Read an old YML file for compatibility test.
-
MYLS authored
-
MYLS authored
[GSoC] FileStorage: Add base64 support for reading and writting XML\YML file. The two new functions: ``` void cvWriteRawData_Base64(cv::FileStorage & fs, const void* _data, int len, const char* dt); void cvWriteMat_Base64(cv::FileStorage & fs, cv::String const & name, cv::Mat const & mat); ```
-
- 25 May, 2016 1 commit
-
-
Pavel Rojtberg authored
at least it is possible to read/ write calibration files. Fixes #4282. Also add CPP method for writing comments.
-
- 11 Apr, 2016 1 commit
-
-
Philipp Hasper authored
-