Mike de Klerk
Mike de Klerk

Reputation: 12328

How to use OpenCv 3.0 CvInvoke.HoughLines method with EmguCv

How to call CvInvoke.HoughLines with EmguCv in C#? Thus not the HoughLinesP method. The trouble I am experiencing is the type to use for the second parameter, which is of IOutputArray.

Upvotes: 1

Views: 4968

Answers (1)

Mike de Klerk
Mike de Klerk

Reputation: 12328

        LineSegment2D[] lines;
        using (var vector = new VectorOfPointF())
        {
            CvInvoke.HoughLines(cannyEdges, vector,
                _arguments.HoughLineArgs.DistanceResolution,
                Math.PI / _arguments.HoughLineArgs.AngleResolution,
                _arguments.HoughLineArgs.Threshold);

            var linesList = new List<LineSegment2D>();
            for (var i = 0; i < vector.Size; i++)
            {
                var rho = vector[i].X;
                var theta = vector[i].Y;
                var pt1 = new Point();
                var pt2 = new Point();
                var a = Math.Cos(theta);
                var b = Math.Sin(theta);
                var x0 = a * rho;
                var y0 = b * rho;
                pt1.X = (int)Math.Round(x0 + mat.Width * (-b));
                pt1.Y = (int)Math.Round(y0 + mat.Height * (a));
                pt2.X = (int)Math.Round(x0 - mat.Width * (-b));
                pt2.Y = (int)Math.Round(y0 - mat.Height * (a));

                linesList.Add(new LineSegment2D(pt1, pt2));
            }

            lines = linesList.ToArray();
        }

Upvotes: 1

Related Questions