Commit d0fc6023 authored by Davis King's avatar Davis King

Updated count_points_on_side_of_line() python binding.

parent 0c652dd4
...@@ -132,15 +132,27 @@ is perpendicular to the line."; ...@@ -132,15 +132,27 @@ is perpendicular to the line.";
!*/ !*/
); );
m.def("count_points_on_side_of_line", &count_points_on_side_of_line<long>, py::arg("l"), py::arg("reference_point"), py::arg("pts"), py::arg("dist_thresh")); m.def("count_points_on_side_of_line", &count_points_on_side_of_line<long>,
m.def("count_points_on_side_of_line", &count_points_on_side_of_line<double>, py::arg("l"), py::arg("reference_point"), py::arg("pts"), py::arg("dist_thresh"), py::arg("l"), py::arg("reference_point"), py::arg("pts"), py::arg("dist_thresh_min")=0, py::arg("dist_thresh_max")=std::numeric_limits<double>::infinity());
m.def("count_points_on_side_of_line", &count_points_on_side_of_line<double>,
py::arg("l"), py::arg("reference_point"), py::arg("pts"), py::arg("dist_thresh_min")=0, py::arg("dist_thresh_max")=std::numeric_limits<double>::infinity(),
"ensures \n\ "ensures \n\
- Returns a count of how many points in pts are on the same side of l as \n\ - Returns a count of how many points in pts have a distance from the line l \n\
reference_point, but also no more than dist_thresh distance from the line." that is in the range [dist_thresh_min, dist_thresh_max]. This distance is a \n\
signed value that indicates how far a point is from the line. Moreover, if \n\
the point is on the same side as reference_point then the distance is \n\
positive, otherwise it is negative. So for example, If this range is [0, \n\
infinity] then this function counts how many points are on the same side of l \n\
as reference_point."
/*! /*!
ensures ensures
- Returns a count of how many points in pts are on the same side of l as - Returns a count of how many points in pts have a distance from the line l
reference_point, but also no more than dist_thresh distance from the line. that is in the range [dist_thresh_min, dist_thresh_max]. This distance is a
signed value that indicates how far a point is from the line. Moreover, if
the point is on the same side as reference_point then the distance is
positive, otherwise it is negative. So for example, If this range is [0,
infinity] then this function counts how many points are on the same side of l
as reference_point.
!*/ !*/
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment