Home | History | Annotate | Download | only in include

Lines Matching refs:bg_model

1156 typedef void (CV_CDECL * CvReleaseBGStatModel)( struct CvBGStatModel** bg_model );
1157 typedef int (CV_CDECL * CvUpdateBGStatModel)( IplImage* curr_frame, struct CvBGStatModel* bg_model );
1179 CV_INLINE void cvReleaseBGStatModel( CvBGStatModel** bg_model )
1181 if( bg_model && *bg_model && (*bg_model)->release )
1182 (*bg_model)->release( bg_model );
1186 CV_INLINE int cvUpdateBGStatModel( IplImage* current_frame, CvBGStatModel* bg_model )
1188 return bg_model && bg_model->update ? bg_model->update( current_frame, bg_model ) : 0;
1195 // bg_model - pointer to CvBGStatModel structure
1196 CVAPI(void) cvRefineForegroundMaskBySegm( CvSeq* segments, CvBGStatModel* bg_model );