enum cv::RectanglesIntersectTypes

Overview

types of intersection between rectangles Moreā€¦

#include <imgproc.hpp>

enum RectanglesIntersectTypes
{
    INTERSECT_NONE    = 0,
    INTERSECT_PARTIAL = 1,
    INTERSECT_FULL    = 2,
};

Detailed Documentation

types of intersection between rectangles

Enum Values

INTERSECT_NONE

No intersection.

INTERSECT_PARTIAL

There is a partial intersection.

INTERSECT_FULL

One of the rectangle is fully enclosed in the other.