struct NcvSize32u

Overview

#include <NCV.hpp>

struct NcvSize32u
{
    // fields

    Ncv32u height;
    Ncv32u width;

    // construction

    NcvSize32u();

    NcvSize32u(
        Ncv32u width_,
        Ncv32u height_
        );

    // methods

    __host__ __device__ bool
    operator==(const NcvSize32u& another) const;
};

Detailed Documentation

Fields

Ncv32u height

Rectangle height.

Ncv32u width

Rectangle width.