Home
last modified time | relevance | path

Searched refs:src_roi (Results 1 – 1 of 1) sorted by relevance

/external/opencv/cv/src/
Dcvfilter.cpp412 CvRect src_roi, CvPoint dst_origin, int flags ) in process() argument
455 if( src_roi.width == -1 && src_roi.x == 0 ) in process()
456 src_roi.width = width; in process()
458 if( src_roi.height == -1 && src_roi.y == 0 ) in process()
460 src_roi.y = 0; in process()
461 src_roi.height = src->rows; in process()
464 if( src_roi.width > max_width || in process()
465 src_roi.x < 0 || src_roi.width < 0 || in process()
466 src_roi.y < 0 || src_roi.height < 0 || in process()
467 src_roi.x + src_roi.width > width || in process()
[all …]