-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathnode.py
81 lines (65 loc) · 2.35 KB
/
node.py
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
71
72
73
74
75
76
77
78
79
80
81
""" Common nodes for building a pipeline """
import cv2
import numpy as np
class RootNode:
"""Root node that all nodes"""
def __init__(self, type_, id_, param, window_name, buffer):
self.buffer = buffer
self.empty_roi = (np.int64(), np.int64(), np.int64(), np.int64())
self.type_ = type_
self.id_ = id_
self.window_name = window_name
self.input_nodes = []
self.param = param
self.disabled = param["disabled"]
self.ROI_coordinates = None
def show_frame(self):
...
def stop(self):
...
def selection_callback(self, rect):
self.ROI_coordinates = rect
def add_input(self, node):
self.input_nodes.append(node)
def get_input(self):
return self.input_nodes
def get_frame(self, port_number):
"""Port number - node input number"""
return self.input_nodes[port_number].out_frame()
def color_reversed(self, x):
return (x[2], x[1], x[0])
class SelectionTool:
"""Frame selection tool"""
def __init__(self, win_name, callback):
self.win_name = win_name
self.callback = callback
cv2.setMouseCallback(win_name, self.onmouse)
self.drag_start = None
self.drag_rect = None
def onmouse(self, event, x, y, flags, param):
"""Handling mouse events"""
if event == cv2.EVENT_LBUTTONDOWN:
self.drag_start = (x, y)
if self.drag_start:
if flags & cv2.EVENT_FLAG_LBUTTON:
xo, yo = self.drag_start
x0, y0 = np.minimum([xo, yo], [x, y])
x1, y1 = np.maximum([xo, yo], [x, y])
self.drag_rect = None
if x1 - x0 > 0 and y1 - y0 > 0:
self.drag_rect = (x0, y0, x1, y1)
else:
rect = self.drag_rect
self.drag_start = None
self.drag_rect = None
if rect:
self.callback(rect)
def draw_selection(self, frame):
"""Draw a selection area"""
if not self.drag_rect:
return False
x0, y0, x1, y1 = self.drag_rect
cx = int(x1 * 0.5) + int(x0 * 0.5)
cy = int(y1 * 0.5) + int(y0 * 0.5)
cv2.drawMarker(frame, (cx, cy), (0, 0, 255), 0, 20, 1, 8)
cv2.rectangle(frame, (x0, y0), (x1, y1), (0, 250, 250), 1)