Skip to content

Commit 0c18212

Browse files
committed
Merge branch 'device_name_improvements' of github.com:luxonis/depthai-python into device_name_improvements
2 parents 00cffbf + bc2f4cc commit 0c18212

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/pipeline/CommonBindings.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ void CommonBindings::bind(pybind11::module& m, void* pCallstack){
262262
.def_readwrite("rectifiedRotationRight", &StereoRectification::rectifiedRotationRight)
263263
.def_readwrite("leftCameraSocket", &StereoRectification::leftCameraSocket)
264264
.def_readwrite("rightCameraSocket", &StereoRectification::rightCameraSocket)
265+
.def_readwrite("verticalCameraSocket", &StereoRectification::verticalCameraSocket)
265266
;
266267

267268
// Extrinsics
@@ -303,6 +304,9 @@ void CommonBindings::bind(pybind11::module& m, void* pCallstack){
303304
.def_readwrite("stereoRectificationData", &EepromData::stereoRectificationData)
304305
.def_readwrite("imuExtrinsics", &EepromData::imuExtrinsics)
305306
.def_readwrite("miscellaneousData", &EepromData::miscellaneousData)
307+
.def_readwrite("housingExtrinsics", &EepromData::housingExtrinsics)
308+
.def_readwrite("stereoUseSpecTranslation", &EepromData::stereoUseSpecTranslation)
309+
.def_readwrite("stereoEnableDistortionCorrection", &EepromData::stereoEnableDistortionCorrection)
306310
;
307311
// UsbSpeed
308312
usbSpeed

0 commit comments

Comments
 (0)