Home | History | Annotate | Download | only in cpp

Lines Matching refs:locations

21 void draw_locations( Mat & img, const vector< Rect > & locations, const Scalar & color );
338 void draw_locations( Mat & img, const vector< Rect > & locations, const Scalar & color )
340 if( !locations.empty() )
342 vector< Rect >::const_iterator loc = locations.begin();
343 vector< Rect >::const_iterator end = locations.end();
362 vector< Rect > locations;
389 locations.clear();
390 hog.detectMultiScale( img, locations );
391 draw_locations( draw, locations, reference );
393 locations.clear();
394 my_hog.detectMultiScale( img, locations );
395 draw_locations( draw, locations, trained );