-
Notifications
You must be signed in to change notification settings - Fork 2
/
curledroothair_axis.py
261 lines (197 loc) · 7.19 KB
/
curledroothair_axis.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#This script was used to quantify the degree of hooking in a curled root hair#
#Import libraries##
import cv2
import numpy as np
import Pruning
import skimage.morphology as morph
import matplotlib.pyplot as plt
import skimage.filters.rank as rank
import math
from sklearn.linear_model import LinearRegression
from scipy.stats import norm
from lines import line
## All functions here ##
def makeBoundingBox(binaryImg):
#Find contours
contours,hierarchy = cv2.findContours(binaryImg, 1, 1)
length_contour=0
cIdx=-1
for idx,i in enumerate(contours):
if len(i)>length_contour:
length_contour=len(i)
cIdx=idx
#Get coordinates of rotated bounding box
try:
rect1 = cv2.minAreaRect(contours[cIdx])
except ValueError:
print("cIdx is negative or invalid")
box = cv2.boxPoints(rect1)
return box,contours,cIdx,length_contour
def GetXfromI(B):
Bx=[]
for b in B:
Bx.append(b[0])
return(Bx)
#Get Y(By) values from B
def GetYfromI(B):
By=[]
for b in B:
By.append(b[1])
return (By)
def trisection_skel(skeletonCoordsX,skeletonCoordsY,skel):
#Find the number of true neighbors of the medial axis in the skeleton array
arrBinary = np.zeros_like(skel, dtype='uint8')
arrBinary[skeletonCoordsX,skeletonCoordsY]=1
#Find the point of trisection in the skeleton
a = np.array([[1,1,1],
[1,0,1],
[1,1,1]])
threePointsX,threePointsY=np.where(rank.sum(arrBinary,a)>=3)
onePointX,onePointY=np.where(rank.sum(arrBinary,a)==1)
orangePointsX=[]
orangePointsY=[]
for i,j in zip(threePointsX,threePointsY):
if (i,j) in zip(skeletonCoordsX,skeletonCoordsY):
orangePointsX.append(i)
orangePointsY.append(j)
#Find the edge and tip of the skeleton
greenPointsX=[]
greenPointsY=[]
for i,j in zip(onePointX,onePointY):
if (i,j) in zip(skeletonCoordsX,skeletonCoordsY):
greenPointsX.append(i)
greenPointsY.append(j)
return (greenPointsX,greenPointsY,orangePointsX,orangePointsY)
def chopskel(skeletonCoordsY,threshY,skeletonCoords):
listy=[i for i in skeletonCoordsY if i < threshY]
#print(listy)
# make list
chopped=[]
for i in listy:
#print(i)
for j in skeletonCoords:
if j[0]==i:
chopped.append(j)
return(chopped)
def Average(lst):
return sum(lst) / len(lst)
def midpoint(skeletonCoordsX,skeletonCoordsY):
#Find the mid-point of the skeleton
Skelmidx=Average(skeletonCoordsX)
Skelmidy=Average(skeletonCoordsY)
print(Skelmidx,Skelmidy)
midy=list(skeletonCoordsY).index(int(Skelmidy))
#midy=skeletonCoordsY.index(int(Skelmidy))
Skelmidy1=list(skeletonCoordsY)[midy]
#print(Skelmidx,Skelmidy1)
return(Skelmidx,Skelmidy1)
def pltDataHist(hist_list_input):
# Calculating mean and standard
# deviation
# Plotting the histogram.
# hist_list_input_sorted = np.sort(hist_list_input)
hist_list_input_int_dropped = []
hist_list_input_int = [int(hist_list_input) for hist_list_input in hist_list_input]
counts, bins = np.histogram(hist_list_input_int)
for i in range(len(hist_list_input_int)):
if len(bins) > 3 and hist_list_input_int[i] >= int(bins[2]):
hist_list_input_int_dropped.append(hist_list_input_int[i])
return hist_list_input_int_dropped
## All functions here ##
## make skeleton ##
img=cv2.imread(r"/Users/ankita/Desktop/Data/Hooking_images/curledroothair_commonbean.png",0)
def disthistogramR(img):
ret,thresh_img = cv2.threshold(img,127,255,cv2.THRESH_BINARY)
graymodel=np.array(thresh_img)
data = morph.binary_closing(graymodel, morph.disk(1))
data = morph.binary_opening(data, morph.disk(1))
data = data.astype(int)
skel, distance = morph.medial_axis(data, return_distance=True, random_state=0)
skeletonCoordsX,skeletonCoordsY=np.where(skel==True)
#Pruning.prune(skel,distance)
## make contour ##
# ## make contour ##
box,cont,largestContIdx,length_contour=makeBoundingBox(img)
#list with contour co-ordinates
C=[]
for i in cont[largestContIdx]:
C.append([i[0][0],i[0][1]])
Cx=GetXfromI(C)
Cy=GetYfromI(C)
#Make list of all skeletoncoords
skeletonCoords=[]
for i in range(0,len(skeletonCoordsX)):
skeletonCoords.append((skeletonCoordsX[i],skeletonCoordsY[i]))
# ## get the point of trisection ##
greenPointsX,greenPointsY,orangePointX,orangePointY = trisection_skel(skeletonCoordsX,skeletonCoordsY,skel)
# ## clean skeleton ##
chopped=chopskel(skeletonCoordsX,orangePointX,skeletonCoords)
choppedX=GetXfromI(chopped)
choppedY=GetYfromI(chopped)
#Find the mid-point of the skeleton
Skelmidx=Average(choppedX)
Skelmidy=Average(choppedY)
midy=list(skeletonCoordsY).index(int(Skelmidy))
Skelmidy1=list(skeletonCoordsX)[midy]
# get fit line ##
listx=[i for i in choppedY if i > Skelmidy1]
#print(listy)
# make list
fit=[]
for i in listx:
#print(i)
for j in chopped:
if j[1]==i:
fit.append(j)
fitX=GetXfromI(fit)
fitY=GetYfromI(fit)
# calculate distance from axis ##
# fit regression line ##
# Linear Regression line ##
x = np.array(fitX).reshape((-1, 1))
y = np.array(fitY)
model = LinearRegression()
model.fit(x, y)
x_new = np.array(fitX).reshape((-1, 1))
y_new = model.predict(x_new)
## find the slope and the intercept ##
m=model.coef_
c=model.intercept_
## plot the distances from every point on the skeleton to the axis ##
def distance(point,coef):
return abs((coef[0]*point[0])-point[1]+coef[1])/math.sqrt((coef[0]*coef[0])+1)
dis=[]
i=0
ind=[]
for j in chopped:
d=distance(j,(m,c))
i=i+1
ind.append(i)
dis.append(d[0])
return (dis,skeletonCoordsX,skeletonCoordsY,choppedX,choppedY,fitX,fitY,Cx,Cy,x_new,y_new,orangePointX,orangePointY,Skelmidy,Skelmidy1)
dis,skeletonCoordsX,skeletonCoordsY,choppedX,choppedY,fitX,fitY,Cx,Cy,x_new,y_new,orangePointX,orangePointY,Skelmidy,Skelmidy1=disthistogramR(img)
## Uncomment below to plot the norm fit and the medial axis ##
## plot histogram and fit norm ##
# hist_list_input_int_dropped = pltDataHist(dis)
# mu, std = norm.fit(hist_list_input_int_dropped)
# _,bins,_=plt.hist(hist_list_input_int_dropped, density=True, alpha=0.6, color='r')
# #Plot the PDF.
# xmin, xmax = plt.xlim()
# x = np.linspace(xmin, xmax, 100)
# p = norm.pdf(x, mu, std)
# fit_curve=norm.pdf(bins,mu,std)
# plt.plot(x, p, 'k', linewidth=2)
# title = "Mean & SD: {:.2f} and {:.2f}".format(mu, std)
# plt.title(title)
# #plt.show()
# # plot image ##
# fig,ax =plt.subplots(1,1)
# ax.scatter(skeletonCoordsY,skeletonCoordsX,linewidth=0.00001)
# ax.scatter(choppedY,choppedX,color='skyblue',linewidth=0.00001)
# ax.scatter(fitY,fitX)
# ax.plot(Cx,Cy,color='black')
# ax.plot(y_new,x_new,linestyle='--',color='red',linewidth=3)
# ax.scatter(orangePointY,orangePointX,color='blue')
# ax.scatter(Skelmidy,Skelmidy1,color='blue')
# ax.set_axis_off()
#plt.show()