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
dbce1407
Commit
dbce1407
authored
Jun 26, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Plain Diff
merged
parents
074a3eb5
11a60566
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
5 deletions
+17
-5
spatial_filtering.h
dlib/image_transforms/spatial_filtering.h
+1
-1
structural_svm_object_detection_problem.h
dlib/svm/structural_svm_object_detection_problem.h
+2
-2
release_notes.xml
docs/docs/release_notes.xml
+14
-2
No files found.
dlib/image_transforms/spatial_filtering.h
View file @
dbce1407
...
...
@@ -669,7 +669,7 @@ namespace dlib
const
rectangle
area
=
get_rect
(
img
);
//
save width to avoid computing them over and over
//
Save width to avoid computing it over and over.
const
long
width
=
rect
.
width
();
...
...
dlib/svm/structural_svm_object_detection_problem.h
View file @
dbce1407
...
...
@@ -64,8 +64,8 @@ namespace dlib
max_num_dets
=
0
;
for
(
unsigned
long
i
=
0
;
i
<
truth_rects
.
size
();
++
i
)
{
if
(
truth_rects
.
size
()
>
max_num_dets
)
max_num_dets
=
truth_rects
.
size
();
if
(
truth_rects
[
i
]
.
size
()
>
max_num_dets
)
max_num_dets
=
truth_rects
[
i
]
.
size
();
scanners
[
i
].
copy_configuration
(
scanner
);
}
...
...
docs/docs/release_notes.xml
View file @
dbce1407
...
...
@@ -11,6 +11,19 @@
<!-- ******************************************************************************* -->
<current>
New Stuff:
Non-Backwards Compatible Changes:
Bug fixes:
Other:
</current>
<!-- ******************************************************************************* -->
<old
name=
"17.47"
date=
"Jun 15, 2012"
>
New Stuff:
- Improvements to linear algebra tools:
- Added the lowerbound() and upperbound() routines for thresholding dense
...
...
@@ -59,8 +72,7 @@ Other:
- Improved existing documentation: added pictures of the gui widgets,
added documentation of the dlib::bridge protocol, and other minor
usability improvements.
</current>
</old>
<!-- ******************************************************************************* -->
...
...
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