Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/davisking/dlib
/ intersect
Method
intersect
dlib/geometry/rectangle.h:195–205 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
193
}
194
195
rectangle intersect (
196
const rectangle& rhs
197
) const
198
{
199
return rectangle (
200
std::max(l,rhs.l),
201
std::max(t,rhs.t),
202
std::min(r,rhs.r),
203
std::min(b,rhs.b)
204
);
205
}
206
207
bool contains (
208
const point& p
Callers
15
propagate_labels
Function · 0.45
resample_dataset
Function · 0.45
py_sub_image
Function · 0.45
intersect
Function · 0.45
intersect
Function · 0.45
border_enumerator
Method · 0.45
reset
Method · 0.45
perform_test
Method · 0.45
run_test
Function · 0.45
run_test2
Function · 0.45
sum_filter_i
Function · 0.45
scan_image_i
Function · 0.45
Calls
3
rectangle
Class · 0.70
max
Function · 0.50
min
Function · 0.50
Tested by
13
perform_test
Method · 0.36
run_test
Function · 0.36
run_test2
Function · 0.36
sum_filter_i
Function · 0.36
scan_image_i
Function · 0.36
scan_image_old
Function · 0.36
naive_max_filter
Function · 0.36
test_pyramid_down_grayscale
Function · 0.36
test_pyramid_down_rgb
Function · 0.36
box_intersection_over_union
Function · 0.36
box_percent_covered
Function · 0.36
operator()
Method · 0.36