PYTHON-OPENCV drawing a drawing

Source: Internet
Author: User

Document Link: https://docs.opencv.org/trunk/dc/da5/tutorial_py_drawing_functions.html

The documentation describes several of the drawing features of OpenCV:

Draw a Circle

Draw a rectangle

Draw a line

Draw Ellipse

Drawing polygons

Draw text

To draw a line to illustrate:

ImportCv2ImportNumPy as NP fromMatplotlibImportPyplot as Pltgray= Np.zeros ((512,512), np.uint8)#generate an empty grayscale imageCv2.line (Gray, (0,0), (511,511), 255,5) RGB= Np.zeros ((512,512,3), np.uint8)#generate an empty color imageCv2.line (RGB, (0,0), (511,511), (255,0,155), 5) Plt.subplot (121) Plt.imshow (Gray,'Gray') Plt.subplot (122) plt.imshow (RGB) plt.show ()

Effect:

PYTHON-OPENCV drawing a drawing

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.