Skip to content

Commit

Permalink
TMP: Remove docs from newly added fields
Browse files Browse the repository at this point in the history
  • Loading branch information
SzabolcsGergely committed Nov 1, 2023
1 parent 3a47054 commit 307f22f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pipeline/node/StereoDepthBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ void bind_stereodepth(pybind11::module& m, void* pCallstack){
.def_readwrite("rectificationUseSpecTranslation", &StereoDepthProperties::rectificationUseSpecTranslation, DOC(dai, StereoDepthProperties, rectificationUseSpecTranslation))
.def_readwrite("depthAlignmentUseSpecTranslation", &StereoDepthProperties::depthAlignmentUseSpecTranslation, DOC(dai, StereoDepthProperties, depthAlignmentUseSpecTranslation))
.def_readwrite("alphaScaling", &StereoDepthProperties::alphaScaling, DOC(dai, StereoDepthProperties, alphaScaling))
.def_readwrite("verticalStereo", &StereoDepthProperties::verticalStereo, DOC(dai, StereoDepthProperties, verticalStereo))
.def_readwrite("rectificationInterpolation", &StereoDepthProperties::rectificationInterpolation, DOC(dai, StereoDepthProperties, rectificationInterpolation))
.def_readwrite("verticalStereo", &StereoDepthProperties::verticalStereo)
.def_readwrite("rectificationInterpolation", &StereoDepthProperties::rectificationInterpolation)
;

stereoDepthPresetMode
Expand Down Expand Up @@ -178,8 +178,8 @@ void bind_stereodepth(pybind11::module& m, void* pCallstack){
.def("setRectificationUseSpecTranslation", &StereoDepth::setRectificationUseSpecTranslation, DOC(dai, node, StereoDepth, setRectificationUseSpecTranslation))
.def("setDepthAlignmentUseSpecTranslation", &StereoDepth::setDepthAlignmentUseSpecTranslation, DOC(dai, node, StereoDepth, setDepthAlignmentUseSpecTranslation))
.def("setAlphaScaling", &StereoDepth::setAlphaScaling, DOC(dai, node, StereoDepth, setAlphaScaling))
.def("setVerticalStereo", &StereoDepth::setVerticalStereo, DOC(dai, node, StereoDepth, setVerticalStereo))
.def("setRectificationInterpolation", &StereoDepth::setRectificationInterpolation, DOC(dai, node, StereoDepth, setRectificationInterpolation))
.def("setVerticalStereo", &StereoDepth::setVerticalStereo)
.def("setRectificationInterpolation", &StereoDepth::setRectificationInterpolation)
;
// ALIAS
daiNodeModule.attr("StereoDepth").attr("Properties") = stereoDepthProperties;
Expand Down

0 comments on commit 307f22f

Please sign in to comment.