HomeSort by relevance Sort by last modified time
    Searched refs:useGray (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/video/test/ocl/
test_bgfg_mog2.cpp 27 IMPLEMENT_PARAM_CLASS(UseGray, bool)
31 PARAM_TEST_CASE(Mog2_Update, UseGray, DetectShadow)
33 bool useGray;
37 useGray = GET_PARAM(0);
62 if (useGray)
126 Values(UseGray(true), UseGray(false)),
  /external/opencv3/modules/cudabgsegm/test/
test_bgsegm.cpp 69 IMPLEMENT_PARAM_CLASS(UseGray, bool)
73 PARAM_TEST_CASE(MOG2, cv::cuda::DeviceInfo, std::string, UseGray, DetectShadow, UseRoi)
77 bool useGray;
87 useGray = GET_PARAM(2);
115 if (useGray)
139 if (useGray)
177 testing::Values(UseGray(true), UseGray(false)),
  /external/opencv3/modules/cudaoptflow/perf/
perf_optflow.cpp 113 const bool useGray = GET_PARAM(1);
119 const cv::Mat frame0 = readImage(imagePair.first, useGray ? cv::IMREAD_GRAYSCALE : cv::IMREAD_COLOR);
122 const cv::Mat frame1 = readImage(imagePair.second, useGray ? cv::IMREAD_GRAYSCALE : cv::IMREAD_COLOR);
126 if (useGray)
  /external/opencv3/samples/gpu/
pyrlk_optical_flow.cpp 111 bool useGray = cmd.has("gray");
160 d_pyrLK->calc(useGray ? d_frame0Gray : d_frame0, useGray ? d_frame1Gray : d_frame1, d_prevPts, d_nextPts, d_status);
  /external/opencv3/modules/cudaoptflow/test/
test_optflow.cpp 170 IMPLEMENT_PARAM_CLASS(UseGray, bool)
173 PARAM_TEST_CASE(PyrLKOpticalFlow, cv::cuda::DeviceInfo, UseGray)
176 bool useGray;
181 useGray = GET_PARAM(1);
189 cv::Mat frame0 = readImage("opticalflow/frame0.png", useGray ? cv::IMREAD_GRAYSCALE : cv::IMREAD_COLOR);
192 cv::Mat frame1 = readImage("opticalflow/frame1.png", useGray ? cv::IMREAD_GRAYSCALE : cv::IMREAD_COLOR);
196 if (useGray)
258 testing::Values(UseGray(true), UseGray(false))));

Completed in 124 milliseconds