- 15 May, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 28 Mar, 2018 1 commit
-
-
LaurentBerger authored
* Solves #11156 * Check file size for all file format. Disable APPEND if file is empty * Add test for APPEND mode
-
- 18 Feb, 2018 1 commit
-
-
Tomoaki Teshima authored
-
- 03 Feb, 2018 1 commit
-
-
Alexander Alekhin authored
- removed tr1 usage (dropped in C++17) - moved includes of vector/map/iostream/limits into ts.hpp - require opencv_test + anonymous namespace (added compile check) - fixed norm() usage (must be from cvtest::norm for checks) and other conflict functions - added missing license headers
-
- 13 Dec, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 12 Dec, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 31 Aug, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 07 Aug, 2017 2 commits
-
-
Vladislav Sovrasov authored
-
Vladislav Sovrasov authored
-
- 26 Jul, 2017 1 commit
-
-
dkurt authored
-
- 25 Jul, 2017 1 commit
-
-
dkurt authored
-
- 20 Jul, 2017 1 commit
-
-
Alexander Alekhin 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
-
- 21 Apr, 2017 1 commit
-
-
Tomoaki Teshima authored
-
- 03 Mar, 2017 2 commits
-
-
Vladislav Sovrasov authored
-
Alexander Alekhin authored
-
- 01 Mar, 2017 1 commit
-
-
Vladislav Sovrasov authored
-
- 17 Jan, 2017 1 commit
-
-
Vladislav Sovrasov authored
-
- 16 Nov, 2016 1 commit
-
-
Vladislav Sovrasov authored
-
- 02 Nov, 2016 1 commit
-
-
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;
-
- 10 Aug, 2016 1 commit
-
-
MYLS authored
a JSON emitter, a parser, tests and some basic doc.
-
- 21 Jul, 2016 1 commit
-
-
Ilya Lavrenov authored
-
- 19 Jul, 2016 2 commits
-
-
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 4 commits
-
-
MYLS authored
I could not find the cause of the error: ``` C:\builds_ocv\precommit_opencl\opencv\modules\ts\src\ts_perf.cpp(361): error: The difference between expect_max and actual_max is 8445966.0000002384, which exceeds eps, where expect_max evaluates to 0.9999997615814209, actual_max evaluates to 8445967, and eps evaluates to 1.0000000000000001e-005. Argument "dst0" has unexpected maximal value ``` Hope this is a false alarm.
-
MYLS authored
-
MYLS authored
-
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 4 commits
-
-
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
1. Add Base64 support for reading and writing XML\YML file. The two new functions for writing: ```cpp 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); ``` 2. Change YML file header form `YAML:1.0` to `YAML 1.0`. (standard format) 3. Add test for Base64 part.
-
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); ```
-
- 11 Apr, 2016 2 commits
-
-
Philipp Hasper authored
-
Philipp Hasper authored
-
- 25 Apr, 2015 1 commit
-
-
Mansour Moufid authored
Conflicts: modules/gpu/perf/perf_imgproc.cpp Cast a long integer to double explicitly. Conflicts: modules/python/src2/cv2.cpp Cast some matrix sizes to type int. Change some vector mask types to unsigned. Conflicts: modules/core/src/arithm.cpp
-
- 24 Feb, 2015 1 commit
-
-
Mansour Moufid authored
-