@@ -64,7 +64,7 @@ void CommonBindings::bind(pybind11::module& m, void* pCallstack){
6464 py::enum_<FrameEvent> frameEvent (m, " FrameEvent" , DOC (dai, FrameEvent));
6565 py::class_<ProfilingData> profilingData (m, " ProfilingData" , DOC (dai, ProfilingData));
6666 py::enum_<Interpolation> interpolation (m, " Interpolation" , DOC (dai, Interpolation));
67-
67+
6868 // /////////////////////////////////////////////////////////////////////
6969 // /////////////////////////////////////////////////////////////////////
7070 // /////////////////////////////////////////////////////////////////////
@@ -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
@@ -296,12 +297,16 @@ void CommonBindings::bind(pybind11::module& m, void* pCallstack){
296297 .def_readwrite (" hardwareConf" , &EepromData::hardwareConf)
297298 .def_readwrite (" productName" , &EepromData::productName)
298299 .def_readwrite (" batchName" , &EepromData::batchName)
300+ .def_readwrite (" deviceName" , &EepromData::deviceName)
299301 .def_readwrite (" batchTime" , &EepromData::batchTime)
300302 .def_readwrite (" boardOptions" , &EepromData::boardOptions)
301303 .def_readwrite (" cameraData" , &EepromData::cameraData)
302304 .def_readwrite (" stereoRectificationData" , &EepromData::stereoRectificationData)
303305 .def_readwrite (" imuExtrinsics" , &EepromData::imuExtrinsics)
304306 .def_readwrite (" miscellaneousData" , &EepromData::miscellaneousData)
307+ .def_readwrite (" housingExtrinsics" , &EepromData::housingExtrinsics)
308+ .def_readwrite (" stereoUseSpecTranslation" , &EepromData::stereoUseSpecTranslation)
309+ .def_readwrite (" stereoEnableDistortionCorrection" , &EepromData::stereoEnableDistortionCorrection)
305310 ;
306311 // UsbSpeed
307312 usbSpeed
@@ -379,7 +384,7 @@ void CommonBindings::bind(pybind11::module& m, void* pCallstack){
379384 .value (" READOUT_START" , FrameEvent::READOUT_START)
380385 .value (" READOUT_END" , FrameEvent::READOUT_END)
381386 ;
382-
387+
383388 interpolation
384389 .value (" BILINEAR" , Interpolation::BILINEAR)
385390 .value (" BICUBIC" , Interpolation::BICUBIC)
0 commit comments