Home
last modified time | relevance | path

Searched refs:pano (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/stitching/perf/opencl/
Dperf_stitch.cpp30 UMat pano; in OCL_PERF_TEST_P() local
57 stitcher.stitch(imgs, pano); in OCL_PERF_TEST_P()
61 EXPECT_NEAR(pano.size().width, 1182, 50); in OCL_PERF_TEST_P()
62 EXPECT_NEAR(pano.size().height, 682, 30); in OCL_PERF_TEST_P()
69 UMat pano; in OCL_PERF_TEST_P() local
94 stitcher.stitch(imgs, pano); in OCL_PERF_TEST_P()
98 EXPECT_NEAR(pano.size().width, 1124, 50); in OCL_PERF_TEST_P()
99 EXPECT_NEAR(pano.size().height, 644, 30); in OCL_PERF_TEST_P()
106 UMat pano; in OCL_PERF_TEST_P() local
136 stitcher.stitch(imgs, pano); in OCL_PERF_TEST_P()
[all …]
/external/opencv3/modules/stitching/perf/
Dperf_stich.cpp29 Mat pano; in PERF_TEST_P() local
55 stitcher.stitch(imgs, pano); in PERF_TEST_P()
59 EXPECT_NEAR(pano.size().width, 1182, 50); in PERF_TEST_P()
60 EXPECT_NEAR(pano.size().height, 682, 30); in PERF_TEST_P()
67 Mat pano; in PERF_TEST_P() local
92 stitcher.stitch(imgs, pano); in PERF_TEST_P()
97 if (!pano.empty()) in PERF_TEST_P()
98 resize(pano, pano_small, Size(320, 240), 0, 0, INTER_AREA); in PERF_TEST_P()
/external/opencv3/samples/cpp/
Dstitching.cpp64 Mat pano; in main() local
66 Stitcher::Status status = stitcher.stitch(imgs, pano); in main()
74 imwrite(result_name, pano); in main()
/external/opencv3/modules/stitching/include/opencv2/
Dstitching.hpp187 CV_WRAP Status composePanorama(OutputArray pano);
199 Status composePanorama(InputArrayOfArrays images, OutputArray pano);
202 CV_WRAP Status stitch(InputArrayOfArrays images, OutputArray pano);
210 …s stitch(InputArrayOfArrays images, const std::vector<std::vector<Rect> > &rois, OutputArray pano);
/external/opencv3/modules/stitching/src/
Dstitcher.cpp113 Stitcher::Status Stitcher::composePanorama(OutputArray pano) in composePanorama() argument
115 return composePanorama(std::vector<UMat>(), pano); in composePanorama()
119 Stitcher::Status Stitcher::composePanorama(InputArrayOfArrays images, OutputArray pano) in composePanorama() argument
355 result.convertTo(pano, CV_8U); in composePanorama()
361 Stitcher::Status Stitcher::stitch(InputArrayOfArrays images, OutputArray pano) in stitch() argument
366 return composePanorama(pano); in stitch()
370 …r::stitch(InputArrayOfArrays images, const std::vector<std::vector<Rect> > &rois, OutputArray pano) in stitch() argument
375 return composePanorama(pano); in stitch()