struct InferenceEngine::gapi::kernels::AreaDownMapper

template <typename A, typename I, typename W>
struct AreaDownMapper
{
    // typedefs

    typedef A alpha_type;
    typedef I index_type;
    typedef W work_type;
    typedef MapperUnit<alpha_type, index_type> Unit;

    // fields

    int inSz;
    int outSz;
    double ratio;
    double inv_ratio;
    alpha_type alpha;

    // construction

    AreaDownMapper(int _inSz, int _outSz);

    // methods

    Unit map(int outCoord);
};

// direct descendants

struct Mapper;
struct Mapper;