Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
d0fc6023
Commit
d0fc6023
authored
Jun 23, 2018
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated count_points_on_side_of_line() python binding.
parent
0c652dd4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
line.cpp
tools/python/src/line.cpp
+18
-6
No files found.
tools/python/src/line.cpp
View file @
d0fc6023
...
@@ -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.
!*/
!*/
);
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment