-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathBlobDetection.py
67 lines (55 loc) · 1.63 KB
/
BlobDetection.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
import cv2
from tkinter.filedialog import *
# we will find number of blobs with pixel value 255 in the following image
# finding binary image
print("\nImage should preferably be white (lighter) blobs on black (darker) background ")
photo = askopenfilename()
img = cv2.imread(photo, cv2.IMREAD_GRAYSCALE)
img = cv2.resize(img, (300, 300))
n, l = img.shape
count = 0
# blur the image
ksize = (5, 5) # kernel size
img = cv2.blur(img, ksize)
# thresholding the image
for i in range(n):
for j in range(l):
if (img[i, j] <= 127):
img[i, j] = 0
else:
img[i, j] = 255
def dfs(i, j):
img[i, j] = 127 # implying that we have visited this pixel for further reference
if (i-1 >= 0):
if (img[i-1, j] == 255):
dfs(i-1, j)
if (j-1 >= 0):
if (img[i, j-1] == 255):
dfs(i, j-1)
if (j+1 < l):
if (img[i, j+1] == 255):
dfs(i, j+1)
if (i+1 < n):
if (img[i+1, j] == 255):
dfs(i+1, j)
if ((i-1 >= 0) and (j-1 >= 0)):
if (img[i-1, j-1] == 255):
dfs(i-1, j-1)
if ((i-1 >= 0) and (j+1 < l)):
if (img[i-1, j+1] == 255):
dfs(i-1, j+1)
if ((i+1 < n) and (j-1 >= 0)):
if (img[i+1, j-1] == 255):
dfs(i+1, j-1)
if ((i+1 < n) and (j+1 < l)):
if (img[i+1, j+1] == 255):
dfs(i+1, j+1)
cv2.namedWindow('image', cv2.WINDOW_NORMAL)
cv2.imshow("image", img)
cv2.waitKey(1000)
for i in range(n):
for j in range(l):
if (img[i, j] == 255):
count += 1 # to count number of white blobs
dfs(i, j)
print("count is", count)