-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBarcode.py
More file actions
269 lines (214 loc) · 10.3 KB
/
Copy pathBarcode.py
File metadata and controls
269 lines (214 loc) · 10.3 KB
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
258
259
260
261
262
263
264
265
266
267
268
269
#!/usr/bin/env python3
##This is a flag.
Silent=True
##These are library imports. OS is for file manipulation
import os
##Numpy is for mathematical manipulation, especially with matrices
import numpy as np
##Matplotlib is for processing images into and out of python, and graphing
import matplotlib.pyplot as plt
import matplotlib.mlab as mlab
##Imports latex labels
from matplotlib import rc
rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})
## for Palatino and other serif fonts use:
#rc('font',**{'family':'serif','serif':['Palatino']})
#rc('text', usetex=True)
##Scipy contains some elements used in image processing that are required here
#import scipy.spatial as scspat
#import scipy.ndimage as ndim
##This imports the statistics module from scipy
#import scipy.stats as scstats
##Scikit image is a package which contains a large number of image processing functions
import skimage.io as skio
import skimage.morphology as skmorph
import skimage.filters as filt
import skimage.measure as skmeas
#import skimage.feature as skfea
import skimage.segmentation as skseg
import skimage.draw as skdr
#import skimage.color as skcol
#import csv
import math
#import random as rd
##Imports my Voronoi Split Algorithm into a Module
#import VorSplit
from math import log10, floor
#import seaborn as sns
#import itertools
import sys
Rat=25/(92*1000000)
def normedmean(arr,ax):
mean = np.mean(arr)
variance = np.var(arr)
sigma = np.sqrt(variance)
x = np.linspace(min(arr), max(arr), 100)
ax.plot(x, mlab.normpdf(x, mean, sigma))
def ExCirc(f_image,im_cent):
#print(im_cent)
#f, ax = plt.subplots()
#ax.set_title(r'Test Islet Shape')
#ax.set_xlabel(r'X direction (pixels) $\rightarrow$ ')
#ax.set_ylabel(r'$\leftarrow$ Y direction (pixels)', rotation='vertical')
#ax=plt.matshow(f_image, interpolation='none')
#plt.plot(im_cent[0],im_cent[1], marker='o', markersize=3, color="red")
#plt.savefig('Test'+ext, interpolation='none')
#plt.close()
maxind=math.ceil(math.sqrt(f_image.shape[0]*f_image.shape[0]+f_image.shape[1]*f_image.shape[1])/2)
minind=math.floor(max(f_image.shape)/2)
r_ex=minind
for i in range(maxind,minind,-1):
cicim=np.ones_like(f_image,dtype=bool)
rr,cc=skdr.circle(im_cent[0],im_cent[1],i,f_image.shape)
cicim[rr,cc]=0
if (np.logical_and(cicim,f_image).any()):
r_ex=i
break
#print(r_ex)
return r_ex
def InCirc(f_image,im_cent):
#print(im_cent)
#f, ax = plt.subplots()
#ax.set_title(r'Test Islet Shape')
#ax.set_xlabel(r'X direction (pixels) $\rightarrow$ ')
#ax.set_ylabel(r'$\leftarrow$ Y direction (pixels)', rotation='vertical')
#ax=plt.matshow(f_image, interpolation='none')
#plt.plot(im_cent[0],im_cent[1], marker='o', markersize=3, color="red")
#plt.savefig('Test'+ext, interpolation='none')
#plt.close()
maxind=math.ceil(min(f_image.shape)/2)
r_in=0
for i in range(0,maxind):
cicim=np.zeros_like(f_image,dtype=bool)
rr,cc=skdr.circle(im_cent[0],im_cent[1],i,f_image.shape)
cicim[rr,cc]=1
if (np.logical_and(cicim,np.logical_not(f_image)).any()):
r_in=i
break
return r_in
def round_sig(x, sig=3):
return round(x, sig-int(floor(log10(abs(x))))-1)
##Defines paths to my directories and save file locations
path1=os.getcwd()
path0=os.path.dirname(path1)
path2=path0+ '/Output_Isize'
ext='.eps'
##Creates list of paths to diabetes patients
lst0= ["T1D/"+f for f in os.listdir(path0+"/T1D")if (f.startswith('T'))]
lst1= ["T2D/"+f for f in os.listdir(path0+"/T2D")if (f.startswith('T'))]
lst2= ["Young_Onset/" + f for f in os.listdir(path0+"/Young_Onset" ) if ('CONTROL' in f.upper()) or ('CASE') in f.upper()]
##This Loops Through the Patients
for PNum, f0 in enumerate(lst0+lst1+lst2):
##Sets the input and output paths for the count
ppaths=path0+'/'+f0
opaths=path2+'/'+f0
#print(ppaths)
if 'YOUNG' in ppaths.upper() and 'CONTROL' in ppaths.upper():
DAPIlst=[]
GCGlst=[]
INSlst=[]
SSTlst=[]
OALLlst=[]
for i in [f for f in os.listdir(ppaths)if f.startswith('Image')]:
DAPIlst+=[i+'/'+f for f in os.listdir(ppaths+'/'+i) if (f.endswith('.tif') and 'DAPI' in f.upper())]
GCGlst+=[i+'/'+f for f in os.listdir(ppaths+'/'+i) if (f.endswith('.tif') and 'GCG' in f.upper())]
INSlst+=[i+'/'+f for f in os.listdir(ppaths+'/'+i) if (f.endswith('.tif') and 'INS' in f.upper())]
SSTlst+=[i+'/'+f for f in os.listdir(ppaths+'/'+i) if (f.endswith('.tif') and 'SST' in f.upper())]
OALLlst+=[i+'/'+f for f in os.listdir(ppaths+'/'+i) if (f.endswith('.tif') and 'OVERLAY' in f.upper())]
elif 'YOUNG' in ppaths.upper() and 'CASE' in ppaths.upper():
DAPIlst=[]
GCGlst=[]
INSlst=[]
SSTlst=[]
OALLlst=[]
for i in [f for f in os.listdir(ppaths+'/ICI images/')if f.startswith('Image')]:
DAPIlst+=['/ICI images/'+i+'/'+f for f in os.listdir(ppaths+'/ICI images/'+i) if (f.endswith('.tif') and 'DAPI' in f.upper())]
GCGlst+=['/ICI images/'+i+'/'+f for f in os.listdir(ppaths+'/ICI images/'+i) if (f.endswith('.tif') and 'GCG' in f.upper())]
INSlst+=['/ICI images/'+i+'/'+f for f in os.listdir(ppaths+'/ICI images/'+i) if (f.endswith('.tif') and 'INS' in f.upper())]
SSTlst+=['/ICI images/'+i+'/'+f for f in os.listdir(ppaths+'/ICI images/'+i) if (f.endswith('.tif') and 'SST' in f.upper())]
OALLlst+=['/ICI images/'+i+'/'+f for f in os.listdir(ppaths+'/ICI images/'+i) if (f.endswith('.tif') and 'OVERLAY' in f.upper())]
# for i in [f for f in os.listdir(ppaths+'/IDI images/')if f.startswith('Image')]:
# DAPIlst+=['/IDI images/'+i+'/'+f for f in os.listdir(ppaths+'/IDI images/'+i) if (f.endswith('.tif') and 'DAPI' in f.upper())]
# GCGlst+=['/IDI images/'+i+'/'+f for f in os.listdir(ppaths+'/IDI images/'+i) if (f.endswith('.tif') and 'GCG' in f.upper())]
# INSlst+=['/IDI images/'+i+'/'+f for f in os.listdir(ppaths+'/IDI images/'+i) if (f.endswith('.tif') and 'INS' in f.upper())]
# SSTlst+=['/IDI images/'+i+'/'+f for f in os.listdir(ppaths+'/IDI images/'+i) if (f.endswith('.tif') and 'SST' in f.upper())]
# OALLlst+=['/IDI images/'+i+'/'+f for f in os.listdir(ppaths+'/IDI images/'+i) if (f.endswith('.tif') and 'OVERLAY' in f.upper())]
else:
##These return lists of the scans that have the different hormone stains
DAPIlst=[f for f in os.listdir(ppaths)if (f.endswith('.tif') and 'DAPI' in f.upper())]
GCGlst=[f for f in os.listdir(ppaths)if (f.endswith('.tif') and 'GCG' in f.upper())]
INSlst=[f for f in os.listdir(ppaths)if (f.endswith('.tif') and 'INS' in f.upper())]
SSTlst=[f for f in os.listdir(ppaths)if (f.endswith('.tif') and 'SST' in f.upper())]
OALLlst=[f for f in os.listdir(ppaths)if (f.endswith('.tif') and 'OVERLAY' in f.upper())]
##Creates string detailing the patients
pnt=f0.split("/")[-1]
#print(OALLlst)
#print('\n \n')
#continue
DAPIlst.sort(key=lambda x: x.split()[-1])
GCGlst.sort(key=lambda x: x.split()[-1])
INSlst.sort(key=lambda x: x.split()[-1])
SSTlst.sort(key=lambda x: x.split()[-1])
OALLlst.sort(key=lambda x: x.split()[-1])
##Makes sure all the lists are consistent
if (any(len(lst) != len(DAPIlst) for lst in [GCGlst, INSlst, SSTlst])) or (DAPIlst == []):
print(f0)
print([[lst, len(lst)] for lst in [DAPIlst, GCGlst, INSlst, SSTlst, OALLlst]])
continue
if not os.path.exists(opaths):
os.makedirs(opaths)
##This loops through the Scans for the various patients
for num,(D,G,I,S,O) in enumerate(zip(DAPIlst,GCGlst, INSlst, SSTlst,OALLlst)):
tst=D.split()[-1]
if ((D.split()[-1] != G.split()[-1]) or (D.split()[-1] != I.split()[-1]) or (D.split()[-1] != I.split()[-1]) or (D.split()[-1] != O.split()[-1]) ):
print(D.split()[-1] ,G.split()[-1] ,I.split()[-1] ,S.split()[-1] ,O.split()[-1] )
continue
numbr=tst[:-4]
#print(tst, numbr)
##Set the scan Beta, Delta and Alpha cell count to zero, and make an image number string
SmI1=0
SmS1=0
SmG1=0
Dim=skio.imread(ppaths+'/'+D)
Gim=skio.imread(ppaths+'/'+G)
Iim=skio.imread(ppaths+'/'+I)
Sim=skio.imread(ppaths+'/'+S)
Oim=skio.imread(ppaths+'/'+O)
#print(Dim.shape)
##If silet is off, then plot this out
opathsSST=opaths+'/SST'
if not os.path.exists(opathsSST):
os.makedirs(opathsSST)
##Get rid of the backround blood
Sim1=Sim[:,:,0]+Sim[:,:,1]+Sim[:,:,2]
##Take the Laplacian of the Stomatostatin
##Get rid of the scale bar
DiffSim1=filt.laplace(Sim1)
##If silet is off, then plot this out
##Get rid of scale bar
DiffSim1[-50:,-200:]=0
##Smooth it
DiffSim2=filt.gaussian(DiffSim1,1)
#Filter it
DiffSim3=DiffSim2>filt.threshold_triangle(DiffSim2)
##Mask the original image with the blood removed
Stcked=np.stack([DiffSim3,DiffSim3,DiffSim3],axis=2)
Sim=np.multiply(Stcked,Sim)
##First thing is to find the islet shape. This can be done by adding the non Dapi, smoothing and thresholding
##Add together the three scans
IsltShp=Gim+Iim+Sim
##Add together the red blue and green to flatten the array
IsltShp0=IsltShp[:,:,0]+IsltShp[:,:,1]+IsltShp[:,:,2]
##Get rid of scale bar
IsltShp0[-50:,-200:]=0
##Gaussian smooth followed by a triangle filter to determine the boundary of the islets
IsltShp1=filt.gaussian(IsltShp0,10)
##Gaussian smooth followed by a triangle filter to determine the boundary of the islets
IsltShp2=IsltShp1>filt.threshold_triangle(IsltShp1)
##Get rid of any small objects that may yet exist
IsltShp3=skmorph.remove_small_holes(IsltShp2, connectivity=1, area_threshold=1000)
IsltShp4=skmorph.remove_small_objects(IsltShp3, connectivity=1, min_size=10000)
IsltLabs, B0 = skmeas.label(IsltShp4, return_num=1)
IsltHoles, B1 = skmeas.label(skseg.clear_border(np.logical_not(IsltShp4)), return_num=1)
print(B0,B1)
sys.exit()