diff --git a/include/depthai-shared/datatype/RawImageManipConfig.hpp b/include/depthai-shared/datatype/RawImageManipConfig.hpp index ad8df3fb..6001c3e9 100644 --- a/include/depthai-shared/datatype/RawImageManipConfig.hpp +++ b/include/depthai-shared/datatype/RawImageManipConfig.hpp @@ -86,10 +86,11 @@ struct RawImageManipConfig : public RawBuffer { }; struct FormatConfig { - RawImgFrame::Type type = RawImgFrame::Type::RGB888p; + RawImgFrame::Type type = RawImgFrame::Type::NONE; bool flipHorizontal = false; + bool flipVertical = false; - DEPTHAI_SERIALIZE(FormatConfig, type, flipHorizontal); + DEPTHAI_SERIALIZE(FormatConfig, type, flipHorizontal, flipVertical); }; CropConfig cropConfig; diff --git a/include/depthai-shared/properties/ImageManipProperties.hpp b/include/depthai-shared/properties/ImageManipProperties.hpp index 7f1256d8..9f62612a 100644 --- a/include/depthai-shared/properties/ImageManipProperties.hpp +++ b/include/depthai-shared/properties/ImageManipProperties.hpp @@ -18,8 +18,15 @@ struct ImageManipProperties : PropertiesSerializable