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
21808a99
Commit
21808a99
authored
Jan 15, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some missing includes that only triggered a compiler error in
clang and also fixed a function call ambiguity.
parent
46985273
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
matrix_la.h
dlib/matrix/matrix_la.h
+1
-0
pixel.h
dlib/pixel.h
+3
-3
cca.h
dlib/statistics/cca.h
+1
-0
No files found.
dlib/matrix/matrix_la.h
View file @
21808a99
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
#include "matrix_la_abstract.h"
#include "matrix_la_abstract.h"
#include "matrix_utilities.h"
#include "matrix_utilities.h"
#include "../sparse_vector.h"
// The 4 decomposition objects described in the matrix_la_abstract.h file are
// The 4 decomposition objects described in the matrix_la_abstract.h file are
// actually implemented in the following 4 files.
// actually implemented in the following 4 files.
...
...
dlib/pixel.h
View file @
21808a99
...
@@ -945,14 +945,14 @@ namespace dlib
...
@@ -945,14 +945,14 @@ namespace dlib
{
{
rgb_pixel
temp
;
rgb_pixel
temp
;
// convert target hsi pixel to rgb
// 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
// 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
// now we can just go assign the new rgb value to the
// hsi pixel
// hsi pixel
assign
(
dest
,
temp
);
assign
_pixel_helpers
::
assign
(
dest
,
temp
);
}
}
}
}
...
...
dlib/statistics/cca.h
View file @
21808a99
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
#include "cca_abstract.h"
#include "cca_abstract.h"
#include "../algs.h"
#include "../algs.h"
#include "../matrix.h"
#include "../matrix.h"
#include "../sparse_vector.h"
namespace
dlib
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