码迷,mamicode.com
首页 > 其他好文 > 详细

OpenCV004:空白图片生成与基本图形绘制

时间:2020-02-22 10:06:02      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:htm   waitkey   des   ttext   fun   tor   https   图片   size   

#https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_gui/py_drawing_functions/py_drawing_functions.html#drawing-functions
###########################################
####Import Module                      ####
import numpy as np  
import cv2  
#create a black use numpy,size is:512*512
img = np.zeros((512,512,3), np.uint8)   
#fill the image with white
img.fill(255)
###########################################
####Main Function                      #### 
#draw 
#        start x  y end x    y      color
cv2.line(img, (10,50), (511, 511), (255,0,0), 5) 
cv2.rectangle(img, (384,0), (510, 128), (0, 255, 0), 3)
cv2.circle(img, (447, 63), 63, (0,0,255), -1) 
cv2.ellipse(img, (256,256), (100,50),45,0,290,(0,0,255),-1)
font = cv2.FONT_HERSHEY_SIMPLEX  
cv2.putText(img, 'Hello', (10,500), font, 4, (255,2,255), 2)  
cv2.imshow('image', img)  
cv2.waitKey(0)  
cv2.destroyAllWindows() 

OpenCV004:空白图片生成与基本图形绘制

标签:htm   waitkey   des   ttext   fun   tor   https   图片   size   

原文地址:https://www.cnblogs.com/enumx/p/12343979.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!