Lines Matching refs:img_to_show
191 Mat img_to_show; in run() local
209 img.copyTo(img_to_show); in run()
225 rectangle(img_to_show, r.tl(), r.br(), Scalar(0, 255, 0), 3); in run()
228 …putText(img_to_show, ocl::useOpenCL() ? "Mode: OpenCL" : "Mode: CPU", Point(5, 25), FONT_HERSHEY_… in run()
229 …putText(img_to_show, "FPS (HOG only): " + hogWorkFps(), Point(5, 65), FONT_HERSHEY_SIMPLEX, 1., Sc… in run()
230 …putText(img_to_show, "FPS (total): " + workFps(), Point(5, 105), FONT_HERSHEY_SIMPLEX, 1., Scalar(… in run()
231 imshow("opencv_hog", img_to_show); in run()
241 imwrite(output, img_to_show); in run()
248 img_to_show.size(), true); in run()
253 if (make_gray) cvtColor(img_to_show, img, COLOR_GRAY2BGR); in run()
254 else cvtColor(img_to_show, img, COLOR_BGRA2BGR); in run()