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
f3f1a826
Commit
f3f1a826
authored
May 14, 2019
by
Adrià Arrufat
Committed by
Davis E. King
May 14, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more pedantic silencing (#1763)
* prevent GCC from complaining about this unused parameter
parent
dbe569a1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
5 deletions
+4
-5
layers.h
dlib/dnn/layers.h
+1
-2
load_image.h
dlib/image_loader/load_image.h
+1
-1
scan_image_custom.h
dlib/image_processing/scan_image_custom.h
+1
-1
sequence_labeler.h
dlib/svm/sequence_labeler.h
+1
-1
No files found.
dlib/dnn/layers.h
View file @
f3f1a826
...
...
@@ -2241,8 +2241,7 @@ namespace dlib
if
(
version
!=
"add_prev_"
)
throw
serialization_error
(
"Unexpected version '"
+
version
+
"' found while deserializing dlib::add_prev_."
);
}
friend
std
::
ostream
&
operator
<<
(
std
::
ostream
&
out
,
const
add_prev_
&
item
)
friend
std
::
ostream
&
operator
<<
(
std
::
ostream
&
out
,
const
add_prev_
&
)
{
out
<<
"add_prev"
<<
id
;
return
out
;
...
...
dlib/image_loader/load_image.h
View file @
f3f1a826
...
...
@@ -54,7 +54,7 @@ namespace dlib
return
UNKNOWN
;
}
}
;
}
// ----------------------------------------------------------------------------------------
...
...
dlib/image_processing/scan_image_custom.h
View file @
f3f1a826
...
...
@@ -105,7 +105,7 @@ namespace dlib
double
,
compute_object_score
,
(
const
matrix
<
double
,
0
,
1
>&
w
,
const
rectangle
&
obj
)
const
)
;
)
template
<
typename
fe_type
>
typename
enable_if
<
has_compute_object_score
<
fe_type
>
>::
type
compute_all_rect_scores
(
...
...
dlib/svm/sequence_labeler.h
View file @
f3f1a826
...
...
@@ -64,7 +64,7 @@ namespace dlib
bool
,
template
reject_labeling
<
matrix
<
unsigned
long
>
>
,
(
const
typename
T
::
sequence_type
&
,
const
matrix_exp
<
matrix
<
unsigned
long
>
>&
,
unsigned
long
)
const
)
;
)
template
<
typename
feature_extractor
,
typename
EXP
,
typename
sequence_type
>
typename
enable_if
<
has_reject_labeling
<
feature_extractor
>
,
bool
>::
type
call_reject_labeling_if_exists
(
...
...
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