Home
last modified time | relevance | path

Searched refs:CylindricalWarper (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/stitching/include/opencv2/stitching/
Dwarpers.hpp74 class CylindricalWarper: public WarperCreator class
77 …il::RotationWarper> create(float scale) const { return makePtr<detail::CylindricalWarper>(scale); } in create()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dwarpers.hpp245 class CV_EXPORTS CylindricalWarper : public RotationWarperBase<CylindricalProjector> class
252 CylindricalWarper(float scale) { projector_.scale = scale; } in CylindricalWarper() function in cv::detail::CylindricalWarper
491 class CV_EXPORTS CylindricalWarperGpu : public CylindricalWarper
494 CylindricalWarperGpu(float scale) : CylindricalWarper(scale) {} in CylindricalWarperGpu()
/external/opencv3/modules/stitching/test/ocl/
Dtest_warpers.cpp112 Ptr<WarperCreator> creator = makePtr<CylindricalWarper>(); in OCL_TEST_F()
/external/opencv3/modules/stitching/perf/opencl/
Dperf_warpers.cpp69 creator = makePtr<CylindricalWarper>(); in WarperBase()
/external/opencv3/modules/stitching/src/
Dwarpers.cpp359 Rect CylindricalWarper::buildMaps(Size src_size, InputArray K, InputArray R, OutputArray xmap, Outp… in buildMaps()
395 Point CylindricalWarper::warp(InputArray src, InputArray K, InputArray R, int interp_mode, int bord… in warp()
/external/opencv3/samples/cpp/
Dstitching_detailed.cpp609 warper_creator = makePtr<cv::CylindricalWarper>(); in main()