// 代表一个2D的片段,包含起始和终止位置。
class CV_EXPORTS Range
{
public:
    Range();
    Range(int _start, int _end);
    Range(const CvSlice& slice);
    int size() const;
    bool empty() const;
    static Range all();
    operator CvSlice() const;
    int start, end;
};




相关文章:

  • 2022-12-23
  • 2021-07-03
  • 2021-11-23
  • 2021-05-04
  • 2021-10-24
  • 2021-12-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-17
  • 2022-01-03
  • 2021-07-25
  • 2022-12-23
  • 2021-06-25
相关资源
相似解决方案