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

Merge pull request #18496 from AsyaPronina:comp_args_serialization

Serialization && deserialization for compile arguments

* Initial stub

* Add test on serialization of a custom type

* Namespaces rework

* Fix isSupported in test struct

* Fix clang lookup issue

* Initial implementation

* Drop the isSupported flag

* Initial implementation

* Removed internal header inclusion

* Switched to public API

* Implemented serialization

* Adding desirialize: WIP

* Fixed merge errors

* Implemented

* Final polishing

* Addressed review comments and added debug throw

* Added FluidROI test

* Polishing

* Polishing

* Polishing

* Polishing

* Polishing

* Updated CMakeLists.txt

* Fixed comments

* Addressed review comments

* Removed decay from deserialize_arg

* Addressed review comments

* Removed extra inclusion

* Fixed Win64 warning

* Update gcommon.hpp

* Update serialization.cpp

* Update gcommon.hpp

* gapi: drop GAPI_EXPORTS_W_SIMPLE from GCompileArg

Co-authored-by: Smirnov Alexey <alexey.smirnov@intel.com>
Co-authored-by: AsyaPronina <155jj@mail.ru>
This commit is contained in:
Anastasiya(Asya) Pronina
2020-10-08 00:48:49 +03:00
committed by GitHub
parent 46ccde82cf
commit af2f8c69f0
10 changed files with 180 additions and 20 deletions
@@ -21,7 +21,7 @@ namespace opencv_test
{
std::string method;
};
}
} // namespace opencv_test
namespace cv
{
@@ -31,11 +31,11 @@ namespace cv
{
static const char* tag()
{
return "org.opencv.test..background_substractor_state_params";
return "org.opencv.test.background_substractor_state_params";
}
};
}
}
} // namespace detail
} // namespace cv
namespace opencv_test
{