rizerphe
rizerphe

Reputation: 1390

The fastest way to draw polygons with python

I haven't found any useful info around the web. Right now, I have a problem with graphics speed, so I want to know: which way to draw a polygon on the screen, probably even window, with python, is the fastest? I'm not interested in fast init, or x server use, just to draw.

Upvotes: 1

Views: 968

Answers (1)

Tom Nijhof
Tom Nijhof

Reputation: 572

Best way is contour drawing of openCV (https://docs.opencv.org/3.3.1/d4/d73/tutorial_py_contours_begin.html)

Upvotes: 1

Related Questions