python-opencv實(shí)現(xiàn)簡易畫圖板,供大家參考,具體內(nèi)容如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# -*- coding: utf-8 -*- """ Created on Sat May 19 17:34:54 2018 @author: xxx """ import cv2 as cv import numpy as np def nothing(x): pass # 當(dāng)鼠標(biāo)按下時(shí)變?yōu)?True drawing = False # 如果 mode 為 True 繪制矩形。按下 'm' 變成繪制曲線 mode = True ix, iy = - 1 , - 1 #創(chuàng)建回調(diào)函數(shù) def draw_circle(event, x, y, flags, param): r = cv.getTrackbarPos( 'R' , 'image' ) g = cv.getTrackbarPos( 'G' , 'image' ) b = cv.getTrackbarPos( 'B' , 'image' ) color = (b, g, r) global ix, iy, drawing, mode # 當(dāng)按下左鍵是返回起始位置坐標(biāo) if event = = cv.EVENT_LBUTTONDOWN: drawing = True ix, iy = x, y # 當(dāng)鼠標(biāo)左鍵按下并移動(dòng)是繪制圖形。event 可以查看移動(dòng), flag 查看是否按下 elif event = = cv.EVENT_MOUSEMOVE and flags = = cv.EVENT_FLAG_LBUTTON: if drawing = = True : if mode = = True : cv.rectangle(img, (ix, iy), (x, y), color, - 1 ) else : # 繪制圓圈,小圓點(diǎn)連在一起就成了線,3代表畫筆的粗細(xì) cv.circle(img, (ix, iy), 3 , color, - 1 ) # 下面注釋的代碼是起始點(diǎn)為圓心,起點(diǎn)到終點(diǎn)為半徑 # r = int(np.sqrt((x - ix)**2 + (y - iy)**2)) # cv.circle(img, (x, y), r, (0, 0, 255), -1) # 當(dāng)鼠標(biāo)松開停止繪畫 elif event = = cv.EVENT_LBUTTONUP: drawing = = False # if mode == True: # cv.rectangle(img, (ix, iy), (x, y), (0, 255, 0), -1) # else: # cv.circle(img, (x, y), 5, (0, 0, 255), -1) #創(chuàng)建一幅黑色圖形 img = np.zeros(( 512 , 512 , 3 ), np.uint8) cv.namedWindow( 'image' ) cv.createTrackbar( 'R' , 'image' , 0 , 255 , nothing) cv.createTrackbar( 'G' , 'image' , 0 , 255 , nothing) cv.createTrackbar( 'B' , 'image' , 0 , 255 , nothing) cv.setMouseCallback( 'image' , draw_circle) while ( 1 ): cv.imshow( 'image' , img) k = cv.waitKey( 1 )& 0xFF if k = = ord ( 'm' ): mode = not mode elif k = = 27 : break cv.destroyAllWindow() |
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。
原文鏈接:https://blog.csdn.net/AnimateX/article/details/80386929