Skip to content

Commit

Permalink
sequence_id_filter adding constructor with param in python
Browse files Browse the repository at this point in the history
  • Loading branch information
remibettan committed Sep 21, 2020
1 parent 7c79652 commit 84bedb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wrappers/python/pyrs_processing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ void init_processing(py::module &m) {
hdr_merge.def(py::init<>());

py::class_<rs2::sequence_id_filter, rs2::filter> sequence_id_filter(m, "sequence_id_filter", "Splits depth frames with different sequence ID");
sequence_id_filter.def(py::init<>());
sequence_id_filter.def(py::init<>())
.def(py::init<float>(), "sequence_id"_a);
// rs2::rates_printer
/** end rs_processing.hpp **/
}

0 comments on commit 84bedb8

Please sign in to comment.