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

  /external/opencv3/samples/cpp/
bgfg_segm.cpp 89 Mat bgimg; local
90 bg_model->getBackgroundImage(bgimg);
95 if(!bgimg.empty())
96 imshow("mean background image", bgimg );
  /external/opencv3/samples/gpu/
bgfg_segm.cpp 85 Mat bgimg; local
156 d_bgimg.download(bgimg);
161 if (!bgimg.empty())
162 imshow("mean background image", bgimg);
  /external/opencv3/apps/createsamples/
utility.cpp 711 CvMat* bgimg; local
737 bgimg = cvGetMat( background, &stub );
767 scale = MAX( ((float) cr.width) / bgimg->cols, ((float) cr.height) / bgimg->rows );
769 roi.x = (int) (-0.5F * (scale * bgimg->cols - cr.width) + cr.x);
770 roi.y = (int) (-0.5F * (scale * bgimg->rows - cr.height) + cr.y);
771 roi.width = (int) (scale * bgimg->cols);
772 roi.height = (int) (scale * bgimg->rows);
774 img = cvCreateImage( cvSize( bgimg->cols, bgimg->rows ), IPL_DEPTH_8U, 1 )
    [all...]

Completed in 73 milliseconds