We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4c5df76 + f8c58cc commit fdcfd34Copy full SHA for fdcfd34
wrappers/python/python.cpp
@@ -882,6 +882,9 @@ PYBIND11_MODULE(NAME, m) {
882
.def("start", [](const rs2::sensor& self, std::function<void(rs2::frame)> callback) {
883
self.start(callback);
884
}, "Start passing frames into user provided callback.", "callback"_a)
885
+ .def("start", [](const rs2::sensor& self, rs2::syncer syncer) {
886
+ self.start(syncer);
887
+ }, "Start passing frames into user provided syncer.", "callback"_a)
888
.def("start", [](const rs2::sensor& self, rs2::frame_queue& queue) {
889
self.start(queue);
890
}, "start passing frames into specified frame_queue", "queue"_a)
0 commit comments