Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
21808a99
Commit
21808a99
authored
Jan 15, 2013
by
Davis King
Browse files
Added some missing includes that only triggered a compiler error in
clang and also fixed a function call ambiguity.
parent
46985273
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
dlib/matrix/matrix_la.h
dlib/matrix/matrix_la.h
+1
-0
dlib/pixel.h
dlib/pixel.h
+3
-3
dlib/statistics/cca.h
dlib/statistics/cca.h
+1
-0
No files found.
dlib/matrix/matrix_la.h
View file @
21808a99
...
...
@@ -5,6 +5,7 @@
#include "matrix_la_abstract.h"
#include "matrix_utilities.h"
#include "../sparse_vector.h"
// The 4 decomposition objects described in the matrix_la_abstract.h file are
// actually implemented in the following 4 files.
...
...
dlib/pixel.h
View file @
21808a99
...
...
@@ -945,14 +945,14 @@ namespace dlib
{
rgb_pixel
temp
;
// convert target hsi pixel to rgb
assign
(
temp
,
dest
);
assign_pixel_helpers
::
assign
(
temp
,
dest
);
// now assign the rgb_alpha value to our temp rgb pixel
assign
(
temp
,
src
);
assign_pixel_helpers
::
assign
(
temp
,
src
);
// now we can just go assign the new rgb value to the
// hsi pixel
assign
(
dest
,
temp
);
assign_pixel_helpers
::
assign
(
dest
,
temp
);
}
}
...
...
dlib/statistics/cca.h
View file @
21808a99
...
...
@@ -6,6 +6,7 @@
#include "cca_abstract.h"
#include "../algs.h"
#include "../matrix.h"
#include "../sparse_vector.h"
namespace
dlib
{
...
...
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