当前位置:   article > 正文

Java OpenCV图像ROI裁剪_javacv 录制视频将视频画面局部放大 rect roi = new rect(x, y, wid

javacv 录制视频将视频画面局部放大 rect roi = new rect(x, y, width,

ROI(region of interest),也就是感兴趣区域,如果你设置了图像了ROI,那么在使用OpenCV的函数的时候,会只对ROI区域操作,其他区域忽略。举个例子:
原图:
在这里插入图片描述
现在要将这幅图的蓝色通道加150,如果没有设置ROI,则函数作用在整个图像上,整个图像的所有像素的蓝色通道都会被加上150;如果设置了ROI
Rect ROI(0,100,width/2,height/2);
则函数只会作用在我设置的ROI区域,其他区域保持不变。
通过JavaCV opencv包的相关接口,设置rect,可以实现对图像的裁剪,具体代码如下:
public class MatCut {

/**
 * 按照指定的尺寸截取Mat,坐标原点在左上角
 * @param src   源mat
 * @param x
 * @param y
 * @param width
 * @param height
 * @return  截取后的mat
 */
public static Mat cut(Mat src, int x, int y, int width, int height){
    if(x<0){
        x=0;
    }
    if(y<0){
        y=0;
    }
    if(x>src.width()){
        x=src.width();
    }
    if(y>src.height()){
        y=src.height();
    }
    Rect rect=new Rect(x,y,width,height);
    return new Mat(src,rect);
}

public static Mat cut(Mat src,int x,int y)
{
    int width=src.width()-2*x;
    int height=src.height()-2*y;
    return cut(src,x,y,width,height);
}

public static void main(String[] args) {
    Mat ico= Imgcodecs.imread("G:\\Image\\20181214170231126.png");
    Mat smallIco=cut(ico,200,200);
    showImg(smallIco);
}

private static void showImg(Mat mat){
    HighGui.imshow("结果",mat);
    HighGui.waitKey();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/737120
推荐阅读
相关标签
  

闽ICP备14008679号