Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
617dd5db
Commit
617dd5db
authored
9 years ago
by
Marina Noskova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed doc/opencv.bib
parent
c5221723
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
8 deletions
+12
-8
opencv.bib
doc/opencv.bib
+10
-0
ml.hpp
modules/ml/include/opencv2/ml.hpp
+0
-1
precomp.hpp
modules/ml/src/precomp.hpp
+1
-0
test_mltests2.cpp
modules/ml/test/test_mltests2.cpp
+0
-2
test_save_load.cpp
modules/ml/test/test_save_load.cpp
+1
-5
No files found.
doc/opencv.bib
View file @
617dd5db
...
...
@@ -415,6 +415,16 @@
pages = {2548--2555},
organization = {IEEE}
}
@ARTICLE{Louhichi07,
author = {Louhichi, H. and Fournel, T. and Lavest, J. M. and Ben Aissia, H.},
title = {Self-calibration of Scheimpflug cameras: an easy protocol},
year = {2007},
pages = {2616–2622},
journal = {Meas. Sci. Technol.},
volume = {18},
number = {8},
publisher = {IOP Publishing Ltd}
}
@ARTICLE{LibSVM,
author = {Chang, Chih-Chung and Lin, Chih-Jen},
title = {LIBSVM: a library for support vector machines},
...
...
This diff is collapsed.
Click to expand it.
modules/ml/include/opencv2/ml.hpp
View file @
617dd5db
...
...
@@ -1697,7 +1697,6 @@ CV_EXPORTS void randMVNormal( InputArray mean, InputArray cov, int nsamples, Out
CV_EXPORTS
void
createConcentricSpheresTestSet
(
int
nsamples
,
int
nfeatures
,
int
nclasses
,
OutputArray
samples
,
OutputArray
responses
);
//! @} ml
}
...
...
This diff is collapsed.
Click to expand it.
modules/ml/src/precomp.hpp
View file @
617dd5db
...
...
@@ -45,6 +45,7 @@
#include "opencv2/ml.hpp"
#include "opencv2/core/core_c.h"
#include "opencv2/core/utility.hpp"
#include "opencv2/core/private.hpp"
#include <assert.h>
...
...
This diff is collapsed.
Click to expand it.
modules/ml/test/test_mltests2.cpp
View file @
617dd5db
...
...
@@ -267,9 +267,7 @@ void CV_MLBaseTest::run( int )
{
string
filename
=
ts
->
get_data_path
();
filename
+=
get_validation_filename
();
validationFS
.
open
(
filename
,
FileStorage
::
READ
);
read_params
(
*
validationFS
);
int
code
=
cvtest
::
TS
::
OK
;
...
...
This diff is collapsed.
Click to expand it.
modules/ml/test/test_save_load.cpp
View file @
617dd5db
...
...
@@ -150,11 +150,7 @@ int CV_SLMLTest::validate_test_results( int testCaseIdx )
TEST
(
ML_NaiveBayes
,
save_load
)
{
CV_SLMLTest
test
(
CV_NBAYES
);
test
.
safe_run
();
}
TEST
(
ML_KNearest
,
save_load
)
{
CV_SLMLTest
test
(
CV_KNEAREST
);
test
.
safe_run
();
}
TEST
(
ML_SVM
,
save_load
)
{
CV_SLMLTest
test
(
CV_SVM
);
test
.
safe_run
();
}
TEST
(
ML_SVM
,
save_load
)
{
CV_SLMLTest
test
(
CV_SVM
);
test
.
safe_run
();
}
TEST
(
ML_ANN
,
save_load
)
{
CV_SLMLTest
test
(
CV_ANN
);
test
.
safe_run
();
}
TEST
(
ML_DTree
,
save_load
)
{
CV_SLMLTest
test
(
CV_DTREE
);
test
.
safe_run
();
}
TEST
(
ML_Boost
,
save_load
)
{
CV_SLMLTest
test
(
CV_BOOST
);
test
.
safe_run
();
}
...
...
This diff is collapsed.
Click to expand it.
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