美文网首页
opencv_learning

opencv_learning

作者: thinkpp | 来源:发表于2017-07-24 10:43 被阅读0次

1 flip

void flip
(InputArray src, OutputArray dst, int flipCode);
  • flipCode:a flag to specify how to flip the array; 0 means flipping around the x-axis and positive value (for example, 1) means flipping around y-axis. Negative value (for example, -1) means flipping around both axes (see the discussion below for the formulas).
    • 0: x轴翻转,图像显示上下翻转
    • 1: y轴翻转,图像显示左右翻转
    • -1: x,y翻转,图像上下左右翻转

相关文章

  • opencv_learning

    1 flip flipCode:a flag to specify how to flip the array; ...

网友评论

      本文标题:opencv_learning

      本文链接:https://www.haomeiwen.com/subject/aaovkxtx.html