struct NcvRect32u

Overview

#include <NCV.hpp>

struct NcvRect32u
{
    // fields

    Ncv32u height;
    Ncv32u width;
    Ncv32u x;
    Ncv32u y;

    // construction

    NcvRect32u();

    NcvRect32u(
        Ncv32u x_,
        Ncv32u y_,
        Ncv32u width_,
        Ncv32u height_
        );
};

Detailed Documentation

Fields

Ncv32u height

Rectangle height.

Ncv32u width

Rectangle width.

Ncv32u x

x-coordinate of upper left corner.

Ncv32u y

y-coordinate of upper left corner.