|
1 | 1 | #!/usr/bin/python
|
2 | 2 |
|
3 | 3 | '''
|
4 |
| -This example illustrates how to use cv.ximgproc.EdgeDrawing class. |
| 4 | +This example script illustrates how to use cv.ximgproc.EdgeDrawing class. |
| 5 | +
|
| 6 | +It uses the OpenCV library to load an image, and then use the EdgeDrawing class |
| 7 | +to detect edges, lines, and ellipses. The detected features are then drawn and displayed. |
| 8 | +
|
| 9 | +The main loop allows the user changing parameters of EdgeDrawing by pressing following keys: |
| 10 | +
|
| 11 | +to toggle the grayscale conversion press 'space' key |
| 12 | +to increase MinPathLength value press '/' key |
| 13 | +to decrease MinPathLength value press '*' key |
| 14 | +to increase MinLineLength value press '+' key |
| 15 | +to decrease MinLineLength value press '-' key |
| 16 | +to toggle NFAValidation value press 'n' key |
| 17 | +to toggle PFmode value press 'p' key |
| 18 | +to save parameters to file press 's' key |
| 19 | +to load parameters from file press 'l' key |
| 20 | +
|
| 21 | +The program exits when the Esc key is pressed. |
5 | 22 |
|
6 | 23 | Usage:
|
7 | 24 | ed.py [<image_name>]
|
|
16 | 33 | import random as rng
|
17 | 34 | import sys
|
18 | 35 |
|
19 |
| -rng.seed(12345) |
20 |
| - |
21 |
| -def main(): |
22 |
| - try: |
23 |
| - fn = sys.argv[1] |
24 |
| - except IndexError: |
25 |
| - fn = 'board.jpg' |
26 |
| - |
27 |
| - src = cv.imread(cv.samples.findFile(fn)) |
28 |
| - gray = cv.cvtColor(src, cv.COLOR_BGR2GRAY) |
29 |
| - cv.imshow("source", src) |
30 |
| - |
31 |
| - ssrc = src.copy()*0 |
| 36 | +def EdgeDrawingDemo(src, ed, EDParams, convert_to_gray): |
| 37 | + rng.seed(12345) |
| 38 | + ssrc = np.zeros_like(src) |
32 | 39 | lsrc = src.copy()
|
33 | 40 | esrc = src.copy()
|
34 | 41 |
|
35 |
| - ed = cv.ximgproc.createEdgeDrawing() |
| 42 | + img_to_detect = cv.cvtColor(src, cv.COLOR_BGR2GRAY) if convert_to_gray else src |
36 | 43 |
|
37 |
| - # you can change parameters (refer the documentation to see all parameters) |
38 |
| - EDParams = cv.ximgproc_EdgeDrawing_Params() |
39 |
| - EDParams.MinPathLength = 50 # try changing this value between 5 to 1000 |
40 |
| - EDParams.PFmode = False # defaut value try to swich it to True |
41 |
| - EDParams.MinLineLength = 10 # try changing this value between 5 to 100 |
42 |
| - EDParams.NFAValidation = True # defaut value try to swich it to False |
| 44 | + cv.imshow("source image", img_to_detect) |
43 | 45 |
|
44 |
| - ed.setParams(EDParams) |
| 46 | + print("") |
| 47 | + print("convert_to_gray:", convert_to_gray) |
| 48 | + print("MinPathLength:", EDParams.MinPathLength) |
| 49 | + print("MinLineLength:", EDParams.MinLineLength) |
| 50 | + print("PFmode:", EDParams.PFmode) |
| 51 | + print("NFAValidation:", EDParams.NFAValidation) |
| 52 | + |
| 53 | + tm = cv.TickMeter() |
| 54 | + tm.start() |
45 | 55 |
|
46 | 56 | # Detect edges
|
47 | 57 | # you should call this before detectLines() and detectEllipses()
|
48 |
| - ed.detectEdges(gray) |
| 58 | + ed.detectEdges(img_to_detect) |
49 | 59 |
|
50 | 60 | segments = ed.getSegments()
|
51 | 61 | lines = ed.detectLines()
|
52 | 62 | ellipses = ed.detectEllipses()
|
53 | 63 |
|
54 |
| - #Draw detected edge segments |
55 |
| - for i in range(len(segments)): |
56 |
| - color = (rng.randint(0,256), rng.randint(0,256), rng.randint(0,256)) |
57 |
| - cv.polylines(ssrc, [segments[i]], False, color, 1, cv.LINE_8) |
| 64 | + tm.stop() |
| 65 | + |
| 66 | + print("Detection time : {:.2f} ms. using the parameters above".format(tm.getTimeMilli())) |
| 67 | + |
| 68 | + # Draw detected edge segments |
| 69 | + for segment in segments: |
| 70 | + color = (rng.randint(0, 256), rng.randint(0, 256), rng.randint(0, 256)) |
| 71 | + cv.polylines(ssrc, [segment], False, color, 1, cv.LINE_8) |
58 | 72 |
|
59 | 73 | cv.imshow("detected edge segments", ssrc)
|
60 | 74 |
|
61 |
| - #Draw detected lines |
62 |
| - if lines is not None: # Check if the lines have been found and only then iterate over these and add them to the image |
| 75 | + # Draw detected lines |
| 76 | + if lines is not None: # Check if the lines have been found and only then iterate over these and add them to the image |
63 | 77 | lines = np.uint16(np.around(lines))
|
64 |
| - for i in range(len(lines)): |
65 |
| - cv.line(lsrc, (lines[i][0][0], lines[i][0][1]), (lines[i][0][2], lines[i][0][3]), (0, 0, 255), 1, cv.LINE_AA) |
| 78 | + for line in lines: |
| 79 | + cv.line(lsrc, (line[0][0], line[0][1]), (line[0][2], line[0][3]), (0, 0, 255), 1, cv.LINE_AA) |
66 | 80 |
|
67 | 81 | cv.imshow("detected lines", lsrc)
|
68 | 82 |
|
69 |
| - #Draw detected circles and ellipses |
70 |
| - if ellipses is not None: # Check if circles and ellipses have been found and only then iterate over these and add them to the image |
71 |
| - for i in range(len(ellipses)): |
72 |
| - center = (int(ellipses[i][0][0]), int(ellipses[i][0][1])) |
73 |
| - axes = (int(ellipses[i][0][2])+int(ellipses[i][0][3]),int(ellipses[i][0][2])+int(ellipses[i][0][4])) |
74 |
| - angle = ellipses[i][0][5] |
75 |
| - color = (0, 0, 255) |
76 |
| - if ellipses[i][0][2] == 0: |
77 |
| - color = (0, 255, 0) |
78 |
| - cv.ellipse(esrc, center, axes, angle,0, 360, color, 2, cv.LINE_AA) |
| 83 | + # Draw detected circles and ellipses |
| 84 | + if ellipses is not None: # Check if circles and ellipses have been found and only then iterate over these and add them to the image |
| 85 | + for ellipse in ellipses: |
| 86 | + center = (int(ellipse[0][0]), int(ellipse[0][1])) |
| 87 | + axes = (int(ellipse[0][2] + ellipse[0][3]), int(ellipse[0][2] + ellipse[0][4])) |
| 88 | + angle = ellipse[0][5] |
| 89 | + |
| 90 | + color = (0, 255, 0) if ellipse[0][2] == 0 else (0, 0, 255) |
| 91 | + |
| 92 | + cv.ellipse(esrc, center, axes, angle, 0, 360, color, 2, cv.LINE_AA) |
79 | 93 |
|
80 | 94 | cv.imshow("detected circles and ellipses", esrc)
|
81 |
| - cv.waitKey(0) |
82 |
| - print('Done') |
83 | 95 |
|
| 96 | +def main(): |
| 97 | + try: |
| 98 | + fn = sys.argv[1] |
| 99 | + except IndexError: |
| 100 | + fn = 'board.jpg' |
| 101 | + src = cv.imread(cv.samples.findFile(fn)) |
| 102 | + if src is None: |
| 103 | + print("Error loading image") |
| 104 | + return |
| 105 | + |
| 106 | + ed = cv.ximgproc.createEdgeDrawing() |
| 107 | + |
| 108 | + # Set parameters (refer to the documentation for all parameters) |
| 109 | + EDParams = cv.ximgproc_EdgeDrawing_Params() |
| 110 | + EDParams.MinPathLength = 10 # try changing this value by pressing '/' and '*' keys |
| 111 | + EDParams.MinLineLength = 10 # try changing this value by pressing '+' and '-' keys |
| 112 | + EDParams.PFmode = False # default value is False, try switching by pressing 'p' key |
| 113 | + EDParams.NFAValidation = True # default value is True, try switching by pressing 'n' key |
| 114 | + |
| 115 | + convert_to_gray = True |
| 116 | + key = 0 |
| 117 | + |
| 118 | + while key != 27: |
| 119 | + ed.setParams(EDParams) |
| 120 | + EdgeDrawingDemo(src, ed, EDParams, convert_to_gray) |
| 121 | + key = cv.waitKey() |
| 122 | + if key == 32: # space key |
| 123 | + convert_to_gray = not convert_to_gray |
| 124 | + if key == 112: # 'p' key |
| 125 | + EDParams.PFmode = not EDParams.PFmode |
| 126 | + if key == 110: # 'n' key |
| 127 | + EDParams.NFAValidation = not EDParams.NFAValidation |
| 128 | + if key == 43: # '+' key |
| 129 | + EDParams.MinLineLength = EDParams.MinLineLength + 5 |
| 130 | + if key == 45: # '-' key |
| 131 | + EDParams.MinLineLength = max(0, EDParams.MinLineLength - 5) |
| 132 | + if key == 47: # '/' key |
| 133 | + EDParams.MinPathLength = EDParams.MinPathLength + 20 |
| 134 | + if key == 42: # '*' key |
| 135 | + EDParams.MinPathLength = max(0, EDParams.MinPathLength - 20) |
| 136 | + if key == 115: # 's' key |
| 137 | + fs = cv.FileStorage("ed-params.xml",cv.FileStorage_WRITE) |
| 138 | + EDParams.write(fs) |
| 139 | + fs.release() |
| 140 | + print("parameters saved to ed-params.xml") |
| 141 | + if key == 108: # 'l' key |
| 142 | + fs = cv.FileStorage("ed-params.xml",cv.FileStorage_READ) |
| 143 | + if fs.isOpened(): |
| 144 | + EDParams.read(fs.root()) |
| 145 | + fs.release() |
| 146 | + print("parameters loaded from ed-params.xml") |
84 | 147 |
|
85 | 148 | if __name__ == '__main__':
|
86 | 149 | print(__doc__)
|
|
0 commit comments