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
38ed409e
Commit
38ed409e
authored
Jan 15, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing asserts
parent
f4221249
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
cca.h
dlib/statistics/cca.h
+30
-0
No files found.
dlib/statistics/cca.h
View file @
38ed409e
...
@@ -20,6 +20,15 @@ namespace dlib
...
@@ -20,6 +20,15 @@ namespace dlib
const
matrix
<
T
>&
R
const
matrix
<
T
>&
R
)
)
{
{
DLIB_ASSERT
(
L
.
size
()
>
0
&&
R
.
size
()
>
0
&&
L
.
nr
()
==
R
.
nr
(),
"
\t
matrix compute_correlations()"
<<
"
\n\t
Invalid inputs were given to this function."
<<
"
\n\t
L.size(): "
<<
L
.
size
()
<<
"
\n\t
R.size(): "
<<
R
.
size
()
<<
"
\n\t
L.nr(): "
<<
L
.
nr
()
<<
"
\n\t
R.nr(): "
<<
R
.
nr
()
);
matrix
<
T
>
A
,
B
,
C
;
matrix
<
T
>
A
,
B
,
C
;
A
=
diag
(
trans
(
R
)
*
L
);
A
=
diag
(
trans
(
R
)
*
L
);
B
=
sqrt
(
diag
(
trans
(
L
)
*
L
));
B
=
sqrt
(
diag
(
trans
(
L
)
*
L
));
...
@@ -89,6 +98,16 @@ namespace dlib
...
@@ -89,6 +98,16 @@ namespace dlib
unsigned
long
q
=
2
unsigned
long
q
=
2
)
)
{
{
DLIB_ASSERT
(
num_correlations
>
0
&&
L
.
size
()
>
0
&&
R
.
size
()
>
0
&&
L
.
nr
()
==
R
.
nr
(),
"
\t
matrix cca()"
<<
"
\n\t
Invalid inputs were given to this function."
<<
"
\n\t
num_correlations: "
<<
num_correlations
<<
"
\n\t
L.size(): "
<<
L
.
size
()
<<
"
\n\t
R.size(): "
<<
R
.
size
()
<<
"
\n\t
L.nr(): "
<<
L
.
nr
()
<<
"
\n\t
R.nr(): "
<<
R
.
nr
()
);
using
std
::
min
;
using
std
::
min
;
const
unsigned
long
n
=
min
(
num_correlations
,
(
unsigned
long
)
min
(
R
.
nr
(),
min
(
L
.
nc
(),
R
.
nc
())));
const
unsigned
long
n
=
min
(
num_correlations
,
(
unsigned
long
)
min
(
R
.
nr
(),
min
(
L
.
nc
(),
R
.
nc
())));
return
impl_cca
(
L
,
R
,
Ltrans
,
Rtrans
,
num_correlations
,
extra_rank
,
q
,
n
);
return
impl_cca
(
L
,
R
,
Ltrans
,
Rtrans
,
num_correlations
,
extra_rank
,
q
,
n
);
...
@@ -107,6 +126,17 @@ namespace dlib
...
@@ -107,6 +126,17 @@ namespace dlib
unsigned
long
q
=
2
unsigned
long
q
=
2
)
)
{
{
DLIB_ASSERT
(
num_correlations
>
0
&&
L
.
size
()
==
R
.
size
()
&&
max_index_plus_one
(
L
)
>
0
&&
max_index_plus_one
(
R
)
>
0
,
"
\t
matrix cca()"
<<
"
\n\t
Invalid inputs were given to this function."
<<
"
\n\t
num_correlations: "
<<
num_correlations
<<
"
\n\t
L.size(): "
<<
L
.
size
()
<<
"
\n\t
R.size(): "
<<
R
.
size
()
<<
"
\n\t
max_index_plus_one(L): "
<<
max_index_plus_one
(
L
)
<<
"
\n\t
max_index_plus_one(R): "
<<
max_index_plus_one
(
R
)
);
using
std
::
min
;
using
std
::
min
;
const
unsigned
long
n
=
min
(
max_index_plus_one
(
L
),
max_index_plus_one
(
R
));
const
unsigned
long
n
=
min
(
max_index_plus_one
(
L
),
max_index_plus_one
(
R
));
const
unsigned
long
num_output_correlations
=
min
(
num_correlations
,
min
(
R
.
size
(),
n
));
const
unsigned
long
num_output_correlations
=
min
(
num_correlations
,
min
(
R
.
size
(),
n
));
...
...
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