From 5aa87a22313dc45c1b820fefbbccc5b33fa24add Mon Sep 17 00:00:00 2001 From: Nir Azkiel Date: Wed, 25 Oct 2023 15:05:20 +0300 Subject: [PATCH] PR #12309 from oceanusxiv: Fix pybind arg names (cherry picked from commit b831660f50d9e54b8a2ec7873bf491aad14fb100) --- wrappers/python/pyrsutil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrappers/python/pyrsutil.cpp b/wrappers/python/pyrsutil.cpp index 2f071d1021..a2397bab38 100644 --- a/wrappers/python/pyrsutil.cpp +++ b/wrappers/python/pyrsutil.cpp @@ -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 **/ }