Skip to content

Commit

Permalink
Add t265 options to python enum
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmehall committed Jul 29, 2019
1 parent 1f2a0e7 commit cd0a871
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions wrappers/python/pybackend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ PYBIND11_MODULE(NAME, m) {
.value("filter_holes_fill", RS2_OPTION_HOLES_FILL)
.value("stereo_baseline", RS2_OPTION_STEREO_BASELINE)
.value("global_time_enabled", RS2_OPTION_GLOBAL_TIME_ENABLED)
.value("enable_mapping", RS2_OPTION_ENABLE_MAPPING)
.value("enable_pose_jumping", RS2_OPTION_ENABLE_POSE_JUMPING)
.value("enable_relocalization", RS2_OPTION_ENABLE_RELOCALIZATION)
.value("count", RS2_OPTION_COUNT);

py::enum_<platform::power_state> power_state(m, "power_state");
Expand Down

0 comments on commit cd0a871

Please sign in to comment.