mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
completely new C++ persistence implementation (#13011)
* integrated the new C++ persistence; removed old persistence; most of OpenCV compiles fine! the tests have not been run yet * fixed multiple bugs in the new C++ persistence * fixed raw size of the parsed empty sequences * [temporarily] excluded obsolete applications traincascade and createsamples from build * fixed several compiler warnings and multiple test failures * undo changes in cocoa window rendering (that was fixed in another PR) * fixed more compile warnings and the remaining test failures (hopefully) * trying to fix the last little warning
This commit is contained in:
@@ -64,7 +64,7 @@ public:
|
||||
//int write_default_params(CvFileStorage* fs);
|
||||
|
||||
protected:
|
||||
//int read_params( CvFileStorage* fs );
|
||||
//int read_params( const cv::FileStorage& fs );
|
||||
|
||||
int check_slice( CvPoint StartPt, CvPoint EndPt,
|
||||
CvSeqReader* SrcReader, float Eps,
|
||||
@@ -106,7 +106,7 @@ void CV_ApproxPolyTest::clear()
|
||||
}
|
||||
|
||||
|
||||
int CV_ApproxPolyTest::read_params( CvFileStorage* fs )
|
||||
int CV_ApproxPolyTest::read_params( const cv::FileStorage& fs )
|
||||
{
|
||||
int code = cvtest::BaseTest::read_params( fs );
|
||||
if( code < 0 )
|
||||
|
||||
Reference in New Issue
Block a user