BoofCV polygon drawing equivalent for Android

1

https://boofcv.org/index.php?title=Example_Fit_Polygon

This link above gives does some image detection, and provides good example but it is not for android which is what I need. What I'm really stuck on right now is there any equivalent for this

        VisualizeShapes.drawPolygon(vertexes,true,g2);

in Andriod. If there is can someone help me how to draw it like on the method. Like after I get

 List<PointIndex_I32> vertexes = ShapeFittingOps.fitPolygon(c.external,true, minSide,cornerPenalty);

How do i draw those vertexes?

Nish R

Posted 2019-03-29T01:14:00.913

Reputation: 11

Question was closed 2019-03-29T07:06:52.670

No answers