当前位置: 首页 > 知识库问答 >
问题:

如何在OpenCV中找到Rect对象的角点?

呼延智明
2023-03-14

考虑到第一个角的坐标(左上角)和宽度/高度与Rect对象相关联,找到角似乎非常容易,但问题是,对于旋转的矩形(通常是boundingRect,但边不平行于轴),这些值非常不同。在这种情况下,它存储了与另一个矩形相对应的值,该矩形的边平行于轴并覆盖旋转的矩形,因此我无法检测实际矩形的角。

此外,我想做一个比较这两个算法之间的检测一张纸从图像。

>

  • Canny边->最大轮廓->最大矩形->查找角点->透视变化

    提前谢了。

  • 共有1个答案

    施令雪
    2023-03-14

    我很兴奋能回答我的问题!这很容易,但当你刚开始做一些不太合适的相关文档时,就会发生这种情况。

    我正在努力获取一个通用矩形的角,这在openCV的实现中没有定义,因此几乎是不可能的。

    我遵循stackoverflow上的标准代码进行最大正方形检测。使用approxCurve本身可以很容易地找出拐角。

            Imgproc.cvtColor(imgSource, imgSource, Imgproc.COLOR_BGR2GRAY);
    
            //convert the image to black and white does (8 bit)
            Imgproc.Canny(imgSource, imgSource, 50, 50);
    
            //apply gaussian blur to smoothen lines of dots
            Imgproc.GaussianBlur(imgSource, imgSource, new  org.opencv.core.Size(5, 5), 5);
    
            //find the contours
            List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
            Imgproc.findContours(imgSource, contours, new Mat(), Imgproc.RETR_LIST, Imgproc.CHAIN_APPROX_SIMPLE);
    
            double maxArea = -1;
            int maxAreaIdx = -1;
            Log.d("size",Integer.toString(contours.size()));
            MatOfPoint temp_contour = contours.get(0); //the largest is at the index 0 for starting point
            MatOfPoint2f approxCurve = new MatOfPoint2f();
            MatOfPoint largest_contour = contours.get(0);
            //largest_contour.ge
            List<MatOfPoint> largest_contours = new ArrayList<MatOfPoint>();
            //Imgproc.drawContours(imgSource,contours, -1, new Scalar(0, 255, 0), 1);
    
            for (int idx = 0; idx < contours.size(); idx++) {
                temp_contour = contours.get(idx);
                double contourarea = Imgproc.contourArea(temp_contour);
                //compare this contour to the previous largest contour found
                if (contourarea > maxArea) {
                    //check if this contour is a square
                    MatOfPoint2f new_mat = new MatOfPoint2f( temp_contour.toArray() );
                    int contourSize = (int)temp_contour.total();
                    MatOfPoint2f approxCurve_temp = new MatOfPoint2f();
                    Imgproc.approxPolyDP(new_mat, approxCurve_temp, contourSize*0.05, true);
                    if (approxCurve_temp.total() == 4) {
                        maxArea = contourarea;
                        maxAreaIdx = idx;
                        approxCurve=approxCurve_temp;
                        largest_contour = temp_contour;
                    }
                }
            }
    
           Imgproc.cvtColor(imgSource, imgSource, Imgproc.COLOR_BayerBG2RGB);
           sourceImage =Highgui.imread(Environment.getExternalStorageDirectory().
                     getAbsolutePath() +"/scan/p/1.jpg");
           double[] temp_double;
           temp_double = approxCurve.get(0,0);       
           Point p1 = new Point(temp_double[0], temp_double[1]);
           //Core.circle(imgSource,p1,55,new Scalar(0,0,255));
           //Imgproc.warpAffine(sourceImage, dummy, rotImage,sourceImage.size());
           temp_double = approxCurve.get(1,0);       
           Point p2 = new Point(temp_double[0], temp_double[1]);
          // Core.circle(imgSource,p2,150,new Scalar(255,255,255));
           temp_double = approxCurve.get(2,0);       
           Point p3 = new Point(temp_double[0], temp_double[1]);
           //Core.circle(imgSource,p3,200,new Scalar(255,0,0));
           temp_double = approxCurve.get(3,0);       
           Point p4 = new Point(temp_double[0], temp_double[1]);
          // Core.circle(imgSource,p4,100,new Scalar(0,0,255));
           List<Point> source = new ArrayList<Point>();
           source.add(p1);
           source.add(p2);
           source.add(p3);
           source.add(p4);
           Mat startM = Converters.vector_Point2f_to_Mat(source);
           Mat result=warp(sourceImage,startM);
           return result;
    
     public Mat warp(Mat inputMat,Mat startM) {
                int resultWidth = 1000;
                int resultHeight = 1000;
    
                Mat outputMat = new Mat(resultWidth, resultHeight, CvType.CV_8UC4);
    
    
    
                Point ocvPOut1 = new Point(0, 0);
                Point ocvPOut2 = new Point(0, resultHeight);
                Point ocvPOut3 = new Point(resultWidth, resultHeight);
                Point ocvPOut4 = new Point(resultWidth, 0);
                List<Point> dest = new ArrayList<Point>();
                dest.add(ocvPOut1);
                dest.add(ocvPOut2);
                dest.add(ocvPOut3);
                dest.add(ocvPOut4);
                Mat endM = Converters.vector_Point2f_to_Mat(dest);      
    
                Mat perspectiveTransform = Imgproc.getPerspectiveTransform(startM, endM);
    
                Imgproc.warpPerspective(inputMat, 
                                        outputMat,
                                        perspectiveTransform,
                                        new Size(resultWidth, resultHeight), 
                                        Imgproc.INTER_CUBIC);
    
                return outputMat;
            }
    
     类似资料:
    • 问题内容: 如何在Go中找到对象的类型?在Python中,我只是用来获取对象的类型。类似地,在Go中,是否有实现相同方法的方法? 这是我要迭代的容器: 在这种情况下,我无法获取对象行的类型,这是字符串数组。 问题答案: Go反射包提供了检查变量类型的方法。 以下代码段将打印出字符串,整数和浮点数的反射类型。 输出: 请参阅:http : //play.golang.org/p/XQMcUVsOja

    • 问题内容: 我希望Selenium通过箭头键浏览菜单-首先单击顶部菜单项,然后按“ DOWN”,“ DOWN”,… 问题是您必须始终提供特定的元素才能将“ DOWN”发送到。 有什么方法可以获取当前元素? 我试过了: 但它表示该表达式无法识别或未返回正确的对象。 我希望我错过了一些愚蠢的把戏。 问题答案: 没有比访问更直接的方法了

    • 问题内容: 我希望Selenium通过箭头键浏览菜单-首先单击顶部菜单项,然后按“ DOWN”,“ DOWN”,… 问题是您必须始终提供特定的元素才能将“ DOWN”发送到。 有什么方法可以获取当前元素? 我试过了: 但它表示该表达式无法识别或未返回正确的对象。 我希望我缺少一些愚蠢的把戏。 问题答案: 不知道比访问更直接的方法 如何测试Selenium RC中关注的元素?

    • 我有一个程序,只是为了移动图像。我试着陈述自我。rect作为load_png()调用的一部分,但它并不喜欢它。我认为这会起作用的原因是http://www.pygame.org/docs/tut/tom/games6.html他说这应该行得通: 这是我的代码,根据pygame自己网站上的教程,它应该可以工作: 它给了我这个错误: 如果你们需要我所有的代码,评论吹了,我会编辑它。

    • 我有一个Employee类对象的arraylist。每个员工都有id、fname、lname等。我需要获取员工id所在元素的索引,例如1234521953。如何找到员工所在的索引?每个身份证都是独一无二的这就是为什么我要通过身份证找到他。 这是我的班级成员: 我将它们添加到:

    • 我无法获得对象行的类型,在本例中,这是一个字符串数组。