Skip to content

Commit

Permalink
PR IntelRealSense#12309 from oceanusxiv: Fix pybind arg names
Browse files Browse the repository at this point in the history
  • Loading branch information
Nir-Az authored Oct 25, 2023
2 parents 9c638de + 862b621 commit b831660
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wrappers/python/pyrsutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void init_util(py::module &m) {
};

m.def("rs2_project_color_pixel_to_depth_pixel", cp_to_dp, "Given pixel coordinates of the color image and a minimum and maximum depth, compute the corresponding pixel coordinates in the depth image. Returns [-1 -1] on failure.",
"data"_a, "depth_scale"_a, "depth_min"_a, "depth_max"_a, "depth_intrin"_a, "color_intrin"_a, "depth_to_color"_a,
"color_to_depth"_a, "from_pixel"_a);
"data"_a, "depth_scale"_a, "depth_min"_a, "depth_max"_a, "depth_intrin"_a, "color_intrin"_a, "color_to_depth"_a,
"depth_to_color"_a, "from_pixel"_a);
/** end rsutil.h **/
}

0 comments on commit b831660

Please sign in to comment.