85岁欧尼酱 2022-05-12 09:41 采纳率: 38.9%
浏览 97
已结题

boundingRect的使用


    public void imgCapture(){
        
        Mat gray = new Mat();
        Imgproc.cvtColor(mat, gray, Imgproc.COLOR_BGR2GRAY);
        
        Mat blur = new Mat();
        Imgproc.blur(gray, blur, new Size(5, 5));
       
        Mat thresh = new Mat();
        Imgproc.threshold(blur, thresh, 0, 255, Imgproc.THRESH_BINARY | Imgproc.THRESH_TRIANGLE);
        List<MatOfPoint> contours = new ArrayList<>();
        Mat hierarchy = new Mat();
        Imgproc.findContours(thresh, contours, hierarchy, Imgproc.RETR_TREE, Imgproc.CHAIN_APPROX_SIMPLE);

        double area_max = 0;
        MatOfPoint _cnt = null;
        for (MatOfPoint cnt:contours) {
            double area = Imgproc.contourArea(cnt);
            if (area > area_max){
                area_max = area;
                _cnt = cnt;
            }
        }
        if (_cnt == null)
            return;
        Rect rect = Imgproc.boundingRect(_cnt);
        
        mat = new Mat(mat, rect);
    }

这个方法是用来裁剪图像的吗还有那个boundingRect要怎么使用

  • 写回答

1条回答 默认 最新

  • 不会写代码的猴子 Android领域优质创作者 2022-05-12 10:14
    关注

    boundingRect计算轮廓的垂直边界最小矩形(矩形是与图像上下边界平行的)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 5月22日
  • 已采纳回答 5月14日
  • 创建了问题 5月12日

悬赏问题

  • ¥15 python验证码滑块图像识别
  • ¥15 QT6颜色选择对话框显示不完整
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)