HomeSort by relevance Sort by last modified time
    Searched full:img_aux (Results 1 - 2 of 2) sorted by null

  /external/opencv3/samples/tapi/
hog.cpp 190 UMat img_aux, img; local
199 if (make_gray) cvtColor(frame, img_aux, COLOR_BGR2GRAY );
200 else frame.copyTo(img_aux);
205 Size sz((int)((double)img_aux.cols/resize_scale), (int)((double)img_aux.rows/resize_scale));
206 resize(img_aux, img, sz);
208 else img = img_aux;
  /external/opencv3/samples/gpu/
hog.cpp 294 Mat img_aux, img, img_to_show; local
303 if (make_gray) cvtColor(frame, img_aux, COLOR_BGR2GRAY);
304 else if (use_gpu) cvtColor(frame, img_aux, COLOR_BGR2BGRA);
305 else frame.copyTo(img_aux);
308 if (args.resize_src) resize(img_aux, img, Size(args.width, args.height));
309 else img = img_aux;

Completed in 2938 milliseconds