Python 使用opencv,基础用法 画图
Posted 凹凸曼大人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 使用opencv,基础用法 画图相关的知识,希望对你有一定的参考价值。
import numpy as np import cv2 as cv # Create a black image img = np.zeros((512,512,3), np.uint8) # Draw a diagonal blue line with thickness of 5 px cv.line(img,(0,0),(511,511),(255,0,0),5) cv.rectangle(img,(384,0),(510,128),(0,255,0),3) cv.circle(img,(447,63), 63, (0,0,255), -1) cv.ellipse(img,(256,256),(100,50),0,0,180,255,-1) pts = np.array([[10,5],[20,30],[70,20],[50,10]], np.int32) pts = pts.reshape((-1,1,2)) cv.polylines(img,[pts],True,(0,255,255)) font = cv.FONT_HERSHEY_SIMPLEX cv.putText(img,\'OpenCV\',(10,500), font, 4,(255,255,255),2,cv.LINE_AA) cv.imshow("Display window", img) #显示图片 k = cv.waitKey(0)
最后会出现:
这张图
以上是关于Python 使用opencv,基础用法 画图的主要内容,如果未能解决你的问题,请参考以下文章
opencv-python基础用法详细代码-图片加载-ROI-边缘滤波-二值化-轮廓提取-膨胀腐蚀等