struct CvSlice

#include <types_c.h>

struct CvSlice
{
    // fields

    int end_index;
    int start_index;

    // construction

    CvSlice(
        int start = 0,
        int end = 0
        );

    CvSlice(const cv::Range& r);

    // methods

    operator cv::Range() const;
};