OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getDataPath
(Results
1 - 25
of
73
) sorted by null
1
2
3
/external/opencv3/modules/stitching/perf/opencl/
perf_stitch.cpp
33
_imgs.push_back( imread(
getDataPath
("stitching/a1.png") ) );
34
_imgs.push_back( imread(
getDataPath
("stitching/a2.png") ) );
35
_imgs.push_back( imread(
getDataPath
("stitching/a3.png") ) );
72
imgs.push_back( imread(
getDataPath
("stitching/b1.png") ) );
73
imgs.push_back( imread(
getDataPath
("stitching/b2.png") ) );
109
_imgs.push_back( imread(
getDataPath
("stitching/boat1.jpg") ) );
110
_imgs.push_back( imread(
getDataPath
("stitching/boat2.jpg") ) );
111
_imgs.push_back( imread(
getDataPath
("stitching/boat3.jpg") ) );
112
_imgs.push_back( imread(
getDataPath
("stitching/boat4.jpg") ) );
113
_imgs.push_back( imread(
getDataPath
("stitching/boat5.jpg") ) )
[
all
...]
/external/opencv3/modules/objdetect/perf/opencl/
perf_cascades.cpp
32
CascadeClassifier cc(
getDataPath
(cascadePath) );
34
FAIL() << "Can't load cascade file: " <<
getDataPath
(cascadePath);
36
Mat img = imread(
getDataPath
(imagePath), IMREAD_GRAYSCALE);
38
FAIL() << "Can't load source image: " <<
getDataPath
(imagePath);
/external/opencv3/modules/calib3d/perf/opencl/
perf_stereobm.cpp
59
imread(
getDataPath
("gpu/stereobm/aloe-L.png"), IMREAD_GRAYSCALE).copyTo(left);
60
imread(
getDataPath
("gpu/stereobm/aloe-R.png"), IMREAD_GRAYSCALE).copyTo(right);
/external/opencv3/modules/video/perf/
perf_tvl1optflow.cpp
18
Mat frame1 = imread(
getDataPath
(GetParam().first), IMREAD_GRAYSCALE);
19
Mat frame2 = imread(
getDataPath
(GetParam().second), IMREAD_GRAYSCALE);
/external/opencv3/modules/videoio/perf/
perf_input.cpp
30
string filename =
getDataPath
(GetParam());
perf_output.cpp
23
string filename =
getDataPath
(get<0>(GetParam()));
/external/opencv3/modules/photo/perf/opencl/
perf_denoising.cpp
18
Mat _original = imread(
getDataPath
("cv/denoising/lena_noised_gaussian_sigma=10.png"), IMREAD_GRAYSCALE);
34
Mat _original = imread(
getDataPath
("cv/denoising/lena_noised_gaussian_sigma=10.png"));
57
tmp = imread(
getDataPath
(original_path), IMREAD_GRAYSCALE);
80
tmp = imread(
getDataPath
(original_path), IMREAD_COLOR);
/external/opencv3/modules/stitching/perf/
perf_stich.cpp
32
imgs.push_back( imread(
getDataPath
("stitching/a1.png") ) );
33
imgs.push_back( imread(
getDataPath
("stitching/a2.png") ) );
34
imgs.push_back( imread(
getDataPath
("stitching/a3.png") ) );
70
imgs.push_back( imread(
getDataPath
("stitching/b1.png") ) );
71
imgs.push_back( imread(
getDataPath
("stitching/b2.png") ) );
105
Mat img1, img1_full = imread(
getDataPath
("stitching/b1.png") );
106
Mat img2, img2_full = imread(
getDataPath
("stitching/b2.png") );
158
Mat img1, img1_full = imread(
getDataPath
("stitching/b1.png") );
159
Mat img2, img2_full = imread(
getDataPath
("stitching/b2.png") );
/external/opencv3/modules/video/perf/opencl/
perf_optflow_dualTVL1.cpp
69
Mat frame0 = imread(
getDataPath
("cv/optflow/RubberWhale1.png"), cv::IMREAD_GRAYSCALE);
72
Mat frame1 = imread(
getDataPath
("cv/optflow/RubberWhale2.png"), cv::IMREAD_GRAYSCALE);
perf_optflow_pyrlk.cpp
67
Mat frame0 = imread(
getDataPath
("gpu/opticalflow/rubberwhale1.png"), cv::IMREAD_GRAYSCALE);
70
Mat frame1 = imread(
getDataPath
("gpu/opticalflow/rubberwhale2.png"), cv::IMREAD_GRAYSCALE);
perf_optflow_farneback.cpp
74
Mat frame0 = imread(
getDataPath
("gpu/opticalflow/rubberwhale1.png"), cv::IMREAD_GRAYSCALE);
77
Mat frame1 = imread(
getDataPath
("gpu/opticalflow/rubberwhale2.png"), cv::IMREAD_GRAYSCALE);
perf_bgfg_mog2.cpp
59
const string inputFile =
getDataPath
(get<0>(params));
89
const string inputFile =
getDataPath
(get<0>(params));
/external/opencv3/modules/features2d/perf/opencl/
perf_orb.cpp
15
string filename =
getDataPath
(GetParam());
36
string filename =
getDataPath
(GetParam());
61
string filename =
getDataPath
(GetParam());
perf_fast.cpp
24
string filename =
getDataPath
(get<0>(GetParam()));
/external/opencv3/modules/features2d/perf/
perf_orb.cpp
17
string filename =
getDataPath
(GetParam());
36
string filename =
getDataPath
(GetParam());
59
string filename =
getDataPath
(GetParam());
perf_agast.cpp
26
string filename =
getDataPath
(get<0>(GetParam()));
/external/opencv3/modules/imgproc/perf/
perf_corners.cpp
24
string filename =
getDataPath
(get<0>(GetParam()));
52
string filename =
getDataPath
(get<0>(GetParam()));
79
string filename =
getDataPath
(get<0>(GetParam()));
perf_houghLines.cpp
23
string filename =
getDataPath
(get<0>(GetParam()));
/external/opencv3/modules/cudaobjdetect/perf/
perf_objdetect.cpp
111
cv::cuda::CascadeClassifier::create(perf::TestBase::
getDataPath
(GetParam().second));
127
ASSERT_TRUE(cascade.load(perf::TestBase::
getDataPath
("gpu/perf/haarcascade_frontalface_alt.xml")));
149
cv::cuda::CascadeClassifier::create(perf::TestBase::
getDataPath
(GetParam().second));
165
ASSERT_TRUE(cascade.load(perf::TestBase::
getDataPath
("gpu/lbpcascade/lbpcascade_frontalface.xml")));
/external/opencv3/modules/imgproc/perf/opencl/
perf_gftt.cpp
69
Mat img = imread(
getDataPath
(fileName), cv::IMREAD_GRAYSCALE);
/packages/apps/Gallery/src/com/android/camera/gallery/
IImage.java
53
public abstract String
getDataPath
();
/external/opencv3/modules/cudacodec/perf/
perf_video.cpp
74
const string inputFile = perf::TestBase::
getDataPath
(GetParam());
110
const string inputFile = perf::TestBase::
getDataPath
(GetParam());
/external/emma/ant/ant14/com/vladium/emma/ant/
FileTask.java
86
protected final String []
getDataPath
(final boolean removeNonexistent)
/external/emma/ant/ant14/com/vladium/emma/data/
mergeTask.java
37
String [] files =
getDataPath
(true);
/external/opencv3/modules/calib3d/perf/
perf_cicrlesGrid.cpp
25
string filename =
getDataPath
(get<0>(GetParam()));
Completed in 448 milliseconds
1
2
3