Home | History | Annotate | Download | only in test

Lines Matching refs:bgr

62     cv::Mat bgr  = readImage("../gpu/denoising/lena_noised_gaussian_sigma=20_multi_0.png", cv::IMREAD_COLOR);
63 ASSERT_FALSE(bgr.empty());
64 cv::resize(bgr, bgr, cv::Size(256, 256));
67 cv::cvtColor(bgr, gray, cv::COLOR_BGR2GRAY);
70 cv::cuda::nonLocalMeans(GpuMat(bgr), dbgr, 20);
95 cv::Mat bgr = readImage("../gpu/denoising/lena_noised_gaussian_sigma=20_multi_0.png", cv::IMREAD_COLOR);
96 ASSERT_FALSE(bgr.empty());
99 cv::cvtColor(bgr, gray, cv::COLOR_BGR2GRAY);
104 cv::cuda::fastNlMeansDenoisingColored(GpuMat(bgr), dbgr, 20, 10);