forked from LevTG/neuro.im-proc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Skeletonization_2.2.Rmd
1177 lines (930 loc) · 41.1 KB
/
Skeletonization_2.2.Rmd
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
jupyter:
jupytext:
formats: ipynb,Rmd
text_representation:
extension: .Rmd
format_name: rmarkdown
format_version: '1.2'
jupytext_version: 1.13.7
kernelspec:
display_name: venv
language: python
name: venv
---
<!-- #region toc=true -->
<h1>Table of Contents<span class="tocSkip"></span></h1>
<div class="toc"><ul class="toc-item"><li><span><a href="#Next-actions-and-TODOs" data-toc-modified-id="Next-actions-and-TODOs-1"><strong>Next actions and TODOs</strong></a></span></li><li><span><a href="#Параметры-для-запуска" data-toc-modified-id="Параметры-для-запуска-2">Параметры для запуска</a></span></li><li><span><a href="#Считывание-изображения" data-toc-modified-id="Считывание-изображения-3">Считывание изображения</a></span></li><li><span><a href="#Предобработка-изображения" data-toc-modified-id="Предобработка-изображения-4">Предобработка изображения</a></span><ul class="toc-item"><li><span><a href="#CLAHE" data-toc-modified-id="CLAHE-4.1">CLAHE</a></span></li><li><span><a href="#Кадрирование" data-toc-modified-id="Кадрирование-4.2">Кадрирование</a></span></li><li><span><a href="#Масштабирование" data-toc-modified-id="Масштабирование-4.3">Масштабирование</a></span></li><li><span><a href="#Фильтрация-изображения" data-toc-modified-id="Фильтрация-изображения-4.4">Фильтрация изображения</a></span></li></ul></li><li><span><a href="#Сегментация-сомы" data-toc-modified-id="Сегментация-сомы-5">Сегментация сомы</a></span><ul class="toc-item"><li><span><a href="#Определение-центра" data-toc-modified-id="Определение-центра-5.1">Определение центра</a></span></li><li><span><a href="#Выделение-сомы" data-toc-modified-id="Выделение-сомы-5.2">Выделение сомы</a></span></li></ul></li><li><span><a href="#Расчет-матрицы-Гессе-для-различных-сигм" data-toc-modified-id="Расчет-матрицы-Гессе-для-различных-сигм-6">Расчет матрицы Гессе для различных сигм</a></span></li><li><span><a href="#Расчет-масок-для-различных-сигм" data-toc-modified-id="Расчет-масок-для-различных-сигм-7">Расчет масок для различных сигм</a></span></li><li><span><a href="#Объединение-результатов-Сато-для-различных-сигм" data-toc-modified-id="Объединение-результатов-Сато-для-различных-сигм-8">Объединение результатов Сато для различных сигм</a></span></li><li><span><a href="#Объединение-собственных-векторов-различных-сигм" data-toc-modified-id="Объединение-собственных-векторов-различных-сигм-9">Объединение собственных векторов различных сигм</a></span></li><li><span><a href="#Построение-графа" data-toc-modified-id="Построение-графа-10">Построение графа</a></span><ul class="toc-item"><li><span><a href="#Выражение-для-весов-ребер" data-toc-modified-id="Выражение-для-весов-ребер-10.1">Выражение для весов ребер</a></span></li><li><span><a href="#Добавление-точек-оболочки-сомы-в-граф" data-toc-modified-id="Добавление-точек-оболочки-сомы-в-граф-10.2">Добавление точек оболочки сомы в граф</a></span></li></ul></li><li><span><a href="#Расчет-путей,-встречаемости-точек-в-путях-и-слияние-графов-по-путям" data-toc-modified-id="Расчет-путей,-встречаемости-точек-в-путях-и-слияние-графов-по-путям-11">Расчет путей, встречаемости точек в путях и слияние графов по путям</a></span><ul class="toc-item"><li><span><a href="#Building-all-paths-at-once,-using-the-"best-scale"-full-graph" data-toc-modified-id="Building-all-paths-at-once,-using-the-"best-scale"-full-graph-11.1">Building all paths at once, using the "best-scale" full graph</a></span></li><li><span><a href="#Converting-paths-to-directed-graphs,-merging-and-visualizing-the-graphs" data-toc-modified-id="Converting-paths-to-directed-graphs,-merging-and-visualizing-the-graphs-11.2">Converting paths to directed graphs, merging and visualizing the graphs</a></span></li></ul></li><li><span><a href="#Добавление-сопутствующей-информации" data-toc-modified-id="Добавление-сопутствующей-информации-12">Добавление сопутствующей информации</a></span></li><li><span><a href="#Распределения-встречаемостей-по-сигме" data-toc-modified-id="Распределения-встречаемостей-по-сигме-13">Распределения встречаемостей по сигме</a></span></li><li><span><a href="#Расстояния-между-узлами" data-toc-modified-id="Расстояния-между-узлами-14">Расстояния между узлами</a></span></li><li><span><a href="#Визуализация" data-toc-modified-id="Визуализация-15">Визуализация</a></span></li><li><span><a href="#Сохранение" data-toc-modified-id="Сохранение-16">Сохранение</a></span></li></ul></div>
<!-- #endregion -->
# **Next actions and TODOs**
- [ ] Test performance on other cells
- [ ] Test performace of the approach with more sigma steps (log scale is preferred, i.e. `2.0**np.arange(-1,5,0.5)`)
- [ ] Think about a way to regularize vector orientations, using orientations of the neighbours, or at different scales
- [-] Find a best way to skeletonize the qstack-based arrays and masks (as one of the approaches)
- [X] Find a way to "glue" together paths, that a close-by and have a similar direction
- [ ] Visualize different sub-trees in the merged paths (add individually to napari?)
- [ ] add way to gradually strip/simplify (sub-)graphs for better visualization
```{python}
import os
import sys
```
```{python}
# %matplotlib inline
import matplotlib.pyplot as plt
```
```{python}
import cv2
```
```{python}
import scipy
from scipy import ndimage as ndi
import numpy as np
import networkx as nx
from pathlib import Path
```
```{python}
import napari
```
```{python}
from tqdm.auto import tqdm
```
```{python}
import ccdb
import astromorpho as astro
```
```{python}
from networx2napari import draw_edges, draw_nodes
```
```{python}
def eu_dist(p1, p2):
return np.sqrt(np.sum([(x - y)**2 for x, y in zip(p1, p2)]))
```
```{python}
from collections import defaultdict
def count_points_paths(paths):
acc = defaultdict(int)
for path in paths:
for n in path:
acc[n] += 1
return acc
```
```{python}
def get_shell_mask(mask, do_skeletonize=False, as_points=False):
out = ndi.binary_erosion(mask)^mask
if do_skeletonize:
out = skeletonize(out)
if as_points:
out = astro.morpho.mask2points(out)
return out
```
```{python}
from skimage.filters import threshold_li, threshold_minimum, threshold_triangle
from skimage.morphology import remove_small_objects
```
```{python}
def largest_region(mask):
labels, nlab = ndi.label(mask)
if nlab > 0:
objs = ndi.find_objects(labels)
sizes = [np.sum(labels[o]==k+1) for k,o in enumerate(objs)]
k = np.argmax(sizes)
return labels==k+1
else:
return mask
def crop_image(img, mask=None, margin=0, min_obj_size=0):
if mask is None:
mask = img > 0
if min_obj_size > 0:
mask = remove_small_objects(mask, min_obj_size)
if margin > 0:
mask = ndi.binary_dilation(mask, iterations=margin)
objs = ndi.find_objects(mask)
min_bnds = np.min([[sl.start for sl in o] for o in objs],0)
max_bnds = np.max([[sl.stop for sl in o] for o in objs],0)
crop = tuple(slice(mn,mx) for mn,mx in zip(min_bnds, max_bnds))
return img[crop]
```
```{python}
plt.rc('figure', dpi=150)
```
# Параметры для запуска
```{python tags=c("parameters")}
if os.path.exists('/home/brazhe/yadisk/'):
data_dir = '/home/brazhe/yadisk/data-shared-comfi/3D-astrocyte-images/selected-for-complexity/'
elif os.path.exists('/home/levtg/astro-morpho'):
data_dir = '/home/levtg/astro-morpho/data/'
else:
print("Dont know where to look for the data")
filename = '3wk-both1-grn-raw.pic' # Test cell
# filename = '4wk-ly9-raw.pic' # Octopus
# filename = '2020-12-30 WT1 18month slice1-3 hippo CA1 SR astrocyte lucifer yellow 60X zoom2,5.tif'
# filename = '3wk-ly1-raw.pic' # Cell-killer
use_clahe = True
sigmas = np.arange(0.5, 8, 0.5)
verbose = True
# Set false to start from console
HANDY = True
# Set true to save output
OUT = False
```
```{python}
filename = Path(data_dir).joinpath(filename)
filename
```
# Считывание изображения
```{python}
if HANDY:
verbose = False
# filename = '/home/levtg/astro-morpho/data/3wk-ly10-raw.pic'
```
```{python}
stack, meta = ccdb.read_pic(filename)
dims = ccdb.get_axes(meta)
dims
```
```{python}
if len(dims):
zoom = (dims[-1][0]/dims[0][0])
else:
zoom = 4
print(zoom)
```
# Предобработка изображения
## CLAHE
```{python}
clahe = cv2.createCLAHE(clipLimit =2.0, tileGridSize=(8,8))
```
```{python}
stack_shape = stack.shape
img_clahe = np.zeros(stack.shape, np.float32)
for k,plane in enumerate(stack):
img_clahe[k] = clahe.apply(plane)
```
```{python}
if verbose:
wi = napari.view_image(stack, ndisplay=3, scale=(zoom, 1,1), name='raw', colormap='magenta')
wi.add_image(img_clahe, scale=(zoom,1,1), name='CLAHE',colormap='magenta')
```
```{python}
plt.figure()
plt.hist(np.ravel(stack), 100, histtype='step', log=True, label='raw');
plt.hist(np.ravel(img_clahe), 100, histtype='step', log=True, label='CLAHE');
plt.title("Effect of CLAHE on stack histogram")
plt.legend()
```
```{python}
# check if use clahe or not
img = img_clahe if use_clahe else stack
```
## Кадрирование
```{python}
max_proj = img.max(0)
```
```{python}
domain_mask = ndi.binary_dilation(largest_region(remove_small_objects(max_proj > 0.5*threshold_li(max_proj))), iterations=3)
domain_mask = ndi.binary_closing(domain_mask,iterations=3)
```
```{python}
plt.imshow(max_proj, cmap='gray')
plt.contour(domain_mask, colors=['r'], levels=[0.5])
```
```{python}
img_cropped = np.array([crop_image(plane,domain_mask, margin=10) for plane in img])
```
```{python}
max_proj_1 = img_cropped.max(1)
domain_mask_1 = ndi.binary_dilation(largest_region(remove_small_objects(max_proj_1 > 0.5*threshold_li(max_proj_1))), iterations=3)
domain_mask_1 = ndi.binary_closing(domain_mask_1,iterations=3)
plt.imshow(max_proj_1, cmap='gray')
plt.contour(domain_mask_1, colors=['r'], levels=[0.5])
```
```{python}
img_cropped = np.array([crop_image(img_cropped[:,i],domain_mask_1, margin=10) for i in range(img_cropped.shape[1])]).swapaxes(0,1)
```
```{python}
if verbose:
w = napari.view_image(img_cropped)
```
## Масштабирование
Важный вопрос, как сделать одинаковым масштаб по осям z и xy. Можно downsample XY, можно upsample (by interpolation) Z. Можно комбинировать. В идеале, наверное, XY не трогать, а сделать upsample по Z.
```{python}
downscale = 2
# %time img_noisy = ndi.zoom(img_cropped.astype(np.float32), (zoom/downscale, 1/downscale, 1/downscale), order=1)
```
```{python}
plt.imshow(img_noisy.max(0), cmap='gray')
```
```{python}
img.shape, img_noisy.shape
```
```{python}
# img_noisy = img_cropped
```
## Фильтрация изображения
```{python}
def filter_image(image, filter_func):
threshold = filter_func(image)
#img_filt = np.where(image > threshold, image, 0)
pre_mask = ndi.binary_closing(image >= threshold)
pre_mask = remove_small_objects(pre_mask, 5, connectivity=3)
binary_clean = largest_region(pre_mask)
return np.where(binary_clean, image, 0)
```
```{python}
img_clear = filter_image(img_noisy, threshold_li)
```
```{python}
final_image = img_clear
final_image.shape
```
```{python}
domain_mask3d = ndi.binary_fill_holes(final_image > 0)
domain_shell_mask = get_shell_mask(domain_mask3d)
```
```{python}
def planewise_fill_holes(mask):
for k,plane in enumerate(mask):
mask[k] = ndi.binary_fill_holes(plane)
return mask
domain_mask3d = planewise_fill_holes(domain_mask3d)
domain_mask3d = np.moveaxis(domain_mask3d, 1, 0)
domain_mask3d = planewise_fill_holes(domain_mask3d)
domain_mask3d = np.moveaxis(domain_mask3d, 0, 1)
domain_mask3d = np.moveaxis(domain_mask3d, 2, 0)
domain_mask3d = planewise_fill_holes(domain_mask3d)
domain_mask3d = np.moveaxis(domain_mask3d, 0, 2)
```
```{python}
domain_outer_shell_mask = get_shell_mask(domain_mask3d) & domain_shell_mask
```
```{python}
if verbose:
w = napari.view_image(img_noisy)
w.add_image(final_image, colormap='magenta', blending='additive')
w.add_image(domain_shell_mask, colormap='green', blending='additive')
w.add_image(domain_outer_shell_mask, colormap='red', blending='additive')
```
# Сегментация сомы
## Определение центра
```{python}
import itertools as itt
```
```{python}
def percentile_rescale(arr, plow=1, phigh=99.5):
low, high = np.percentile(arr, (plow, phigh))
if low == high:
return np.zeros_like(arr)
else:
return np.clip((arr-low)/(high-low), 0, 1)
```
```{python}
def flat_indices(shape):
idx = np.indices(shape)
return np.hstack([np.ravel(x_)[:,None] for x_ in idx])
```
```{python}
X1a = flat_indices(final_image.shape)
```
```{python}
# %time weights_s = percentile_rescale(np.ravel(ndi.gaussian_filter(final_image,5))**2,plow=99.5,phigh=99.99)
```
```{python}
center = tuple(map(int, np.sum(X1a*weights_s[:,None],axis=0)/np.sum(weights_s)))
center
```
## Выделение сомы
```{python}
from skimage.morphology import dilation, skeletonize, flood
```
```{python}
from astromorpho import morpho
```
**Альтернативный подход к сегментации сомы**
1. Работаем со сглаженным стеком
2. делаем первичную маску как flood из центра с толерантностью в 10% разницы между максимальным и минимальным значениями в стеке
3. Разрастаем (аналог flood) первичную маску в несколько итераций
```{python}
#soma_mask = largest_region(np.where(dilation(eroded), True, False))
#soma_mask = largest_region(final_image >= np.percentile(final_image, 99))
smooth_stack = ndi.gaussian_filter(final_image, 3)
tol = (smooth_stack.max() - smooth_stack[final_image>0].min())/10
print('tol:',tol)
# %time soma_seed_mask = flood(smooth_stack, center, tolerance=tol)
```
```{python}
# %time soma_mask = morpho.expand_mask(soma_seed_mask, smooth_stack, iterations = 10)
```
```{python}
if verbose:
w = napari.view_image(final_image, ndisplay=3, opacity=0.5)
w.add_image(soma_seed_mask, blending='additive', colormap='cyan')
w.add_image(soma_mask, blending='additive', colormap='magenta')
```
```{python}
# %time soma_shell = get_shell_mask(soma_mask, as_points=True)
```
# Расчет матрицы Гессе для различных сигм
```{python}
if HANDY:
sigmas = 2**np.arange(-1, 3, 0.5)
```
```{python}
id2sigma = {i+1:sigma for i, sigma in enumerate(sigmas)} # shift by one, so that zero doesn't correspond to a cell
sigma2id = {sigma:i+1 for i, sigma in enumerate(sigmas)}
```
```{python}
sato_coll = {}
Vf_coll = {}
```
```{python}
for sigma in tqdm(sigmas):
#astro.morpho.sato3d is newer and uses tensorflow (if it's installed)
#optimally, the two variants of sato3d should be merged
sato, Vf = astro.morpho.sato3d(final_image, sigma, hessian_variant='gradient_of_smoothed', do_brightness_correction=False, return_vectors=True)
sato_coll[sigma] = (sato*sigma**2)*(final_image > 0)
Vf_coll[sigma] = Vf[...,0][...,::-1]
```
```{python}
lengths_coll = {sigma: astro.enh.percentile_rescale(sato)**0.5 for sigma, sato in sato_coll.items()}
vectors_coll = {}
```
```{python}
for sigma in Vf_coll:
Vfx = Vf_coll[sigma]
V = Vfx[..., 0]
U = Vfx[..., 1]
C = Vfx[..., 2]
lengths = lengths_coll[sigma]
vectors_coll[sigma] = np.stack((U*lengths, V*lengths, C*lengths), axis=3)
```
# Расчет масок для различных сигм
```{python}
from ucats import masks as umasks
```
```{python}
masks = {}
for sigma in tqdm(sigmas):
sato = sato_coll[sigma]
threshold = threshold_li(sato[sato>0])*sigma**0.5
masks[sigma] = remove_small_objects(sato > threshold, min_size=int(sigma*64))
```
```{python}
masks[sigmas[-1]] = umasks.select_overlapping(masks[sigmas[-1]], soma_mask)
```
```{python}
for k in range(len(sigmas)-2,-1,-1):
sigma = sigmas[k]
masks[sigma] = umasks.select_overlapping(masks[sigma], ndi.binary_dilation(masks[sigmas[k+1]], iterations=5))
```
Определение оптимальной сигмы
```{python}
fig, axs = plt.subplots(2,4, figsize=(9,6), sharex=True)
mask_threshs = {}
for ax, sigma in zip(np.ravel(axs), sigmas):
lightness = final_image[masks[sigma]]
if sigma < 3:
th = 0
else:
th = -threshold_li(-lightness)
mask_threshs[sigma] = th
ax.set_title(f'σ={sigma :0.1f}, th={th:0.1f}')
ax.hist(lightness)
ax.axvline(th, color='red')
```
```{python}
# for sigma, mask in masks.items():
# pre_mask = remove_small_objects((final_image > mask_threshs[sigma]) & masks[sigma], 5, connectivity=3)
# masks[sigma] = largest_region(pre_mask)
```
```{python}
squares = np.array([np.sum(mask) for mask in masks.values()])
# Клетка-убийца
plt.scatter(x=sigmas[1:], y=(squares/np.roll(squares,1))[1:])
```
```{python}
if verbose:
# w = napari.view_image(final_image, )
for sigma in sigmas:
sato = sato_coll[sigma]
w.add_image(masks[sigma], blending='additive', name=f'σ={sigma:02f}', colormap='red')
```
# Объединение результатов Сато для различных сигм
```{python}
sigma_sato = np.zeros(final_image.shape, dtype=int)
hout = np.zeros(final_image.shape)
mask_sum = np.zeros(final_image.shape, dtype=bool)
for sigma, sato in tqdm(sorted(sato_coll.items(), reverse=True)):
# for sigma, sato in tqdm(sorted(sato_coll.items())):
hcurr = sato
mask_sum = masks[sigma] | mask_sum
mask = (hcurr > hout)*mask_sum # restrict search for optimal sigmas by the corresponding mask
hout[mask] = hcurr[mask]
sigma_sato[mask] = sigma2id[sigma]
```
```{python}
if verbose:
idx = 10
w = napari.view_image(final_image)
w.add_image(sigma_sato==idx)
w.add_image(masks[id2sigma[idx]])
w.add_image(sigma_sato)
```
# Объединение собственных векторов различных сигм
```{python}
vectors_best = np.zeros(vectors_coll[sigmas[0]].shape)
mask_sum = np.zeros(final_image.shape,bool)
masks_exclusive = {}
for k in range(len(sigmas)-1,-1,-1):
# for k in range(len(sigmas)):
sigma = sigmas[k]
mask = masks[sigma]
if k < len(sigmas)-1:
mask = mask & (mask ^ mask_sum)
mask_sum += mask.astype(bool)
masks_exclusive[sigma] = mask
vectors_best[mask] = vectors_coll[sigma][mask]
```
```{python}
napari.view_image(masks_exclusive)
```
```{python}
sigma_mask = np.zeros(final_image.shape, dtype=int)
for sigma_id, sigma in id2sigma.items():
sigma_mask[masks_exclusive[sigma]] = sigma_id
```
```{python}
import hessian_vectors as hv
```
```{python}
vectors_best[...,0], vectors_best[...,1] = vectors_best[...,1], vectors_best[...,0]
```
```{python}
if verbose:
w = napari.view_image(final_image, )
colors = ['red', 'green', 'magenta', 'cyan', 'blue']
for sigma, color in zip(masks, itt.cycle(colors)):
vectors = vectors_best[masks_exclusive[sigma]]
nr, nc, nd = final_image.shape
indexgrid = np.meshgrid(np.arange(nc), np.arange(nr), np.arange(nd))
x, y, z = [np.ravel(a[masks_exclusive[sigma]]) for a in indexgrid]
x1, y1, z1 = vectors[:,0], vectors[:,1], vectors[:,2]
vecs = np.zeros((vectors.shape[0], 2, 3))
vecs[..., 0, 0] = y
vecs[..., 0, 1] = x
vecs[..., 1, 0] = y1
vecs[..., 1, 1] = x1
vecs[..., 0, 2] = z
vecs[..., 1, 2] = z1
properties = {'length': hout[masks_exclusive[sigma]]}
w.add_vectors(vecs, edge_width=0.2,
length=1,
properties=properties,
edge_color='length',
name=f'σ={sigma:02f}',
edge_colormap='inferno')
```
```{python}
if verbose:
w = napari.view_image(final_image, )
colors = ['red', 'green', 'magenta', 'cyan', 'blue']
for sigma, color in zip(masks, itt.cycle(colors)):
w.add_image(masks_exclusive[sigma], blending='additive', name=f'σ={sigma:02f}',colormap=color)
```
# Построение графа
<!-- #region -->
## Выражение для весов ребер
В качестве весов мы используем dissimilarities (неcхожести между узлами, расстояния).
Нам сначала удобнее сформулировать схожести векторов между соседними узлами, потом задать веса ребер как нечто противоположное схожести.
Основной мерой схожести (пока) будет совпадение направлений собственных векторов матрицы Гессе. Кроме того, длины векторов у нас используются из значений vesselness (по Sato, например), а значит, чем длинее оба вектора, тем меньше должен быть вес этой связи (сильнее связь).
Совпадение направлений между векторами $\mathbf u$ и $\mathbf{v}$ рассчитывается как cosine similarity:
\begin{equation}
S_{uv} = S(\mathbf{u},\mathbf{v}) =
\frac{\mathbf{u}\cdot \mathbf{v}}
{\lVert \mathbf{u} \lVert \lVert \mathbf{v} \lVert}
\end{equation}
Поскольку у нас, формально, вектора могут оказаться разнонаправленными, мы должны использовать абсолютное значение $\lvert S \lvert$.
Итак, финальное выражение для веса ребер:
\begin{equation}
W_{ij} := 1 - \left[(1-\alpha)\lvert S^H_{ij} \lvert + \alpha \lvert S^E_{ij} \lvert \right]\frac{N_{ij}}{\max{N_{ij}}},
\end{equation}
Или (сейчас используется этот вариант)
\begin{equation}
W_{ij} := 1 - \lvert S^H_{ij} \lvert + \lvert S^E_{ij} \lvert^\alpha\frac{N_{ij}}{\max{N_{ij}}},
\end{equation}
где $N_{ij}$ — средняя норма Hessian-based векторов в узлах, нормированная на максимальное значение. $S^H_{ij}$ — cosine similarity направлений векторов в соседних узлах, $S^E_{ii}$ — cosine similarity между ориентацией Hessian-вектора в узле $i$ и ориентацией ребра между узлами $i$ и $j$.
<!-- #endregion -->
Можно предложить как минимум, два варианта объединения масштабов:
1. [ ] "Best" -- это где вектора в каждом вокселе взяты из соответствующих масок для разных масштабов, потом все это сведено в один граф, и во всем графе
ищется путь до поверхности сомы. **NOTE:** по идее, маски должны быть "исключительными", то есть каждая область может принадлежать только одной сигме.
2. [ ] "Combined" -- скелет и пути задаются итеративно от больших масштабов к маленьким, то есть используется свой граф для каждого масштаба и пути ищутся в дополнение к уже найденым.
Кстати, можно сделать лучше (предположительно), если вектора из qstack_mask старшего масштаба добавлять к графу меньшего масштаба и опять искать пути до сомы. Тогда будут дополнительно
"тренироваться" пути вдоль больших веток.
Потом можно брать просто сумму qstacks для разных масштабов, маску можно брать как объединение всех масок на разных уровнях или снова как надпороговые пиксели.
```{python}
def prep_crops():
"makes list of crops for edges"
num2slice = {1: (slice(1,None), slice(None,-1)),
0: (slice(None), slice(None)),
-1: (slice(None,-1), slice(1,None))}
shifts = list(itt.product(*[(-1,0,1)]*3))
# we only need one half of that
cut = int(np.ceil(len(shifts)/2))
crops_new = [list(zip(*[num2slice[n] for n in tuple])) for tuple in shifts[cut:]]
return crops_new
```
```{python}
def tensor_cosine_similarity(U, V, return_norms=False):
"Calculate cosine similarity between vectors stored in the last dimension of some tensor"
dprod = np.einsum('...ij,...ij->...i', U, V)
#norm_U = np.linalg.norm(U, axis=-1)
#norm_V = np.linalg.norm(V, axis=-1)
# don't know why, but this is faster than linalg.norm
norm_U = np.sum(U**2, axis=-1)**0.5
norm_V = np.sum(V**2, axis=-1)**0.5
normprod = norm_U*norm_V
out = np.zeros(U.shape[:-1], dtype=np.float32)
nonzero = normprod>0
out[nonzero] = dprod[nonzero]/normprod[nonzero]
if return_norms:
return out, (norm_U, norm_V)
else:
return out
def calc_edges(U, V, index1, index2, alpha=0.0, do_threshold=True, return_W=False, verbose=False):
# cовпадение направлений из Гессиана
Sh, (normU,normV) = tensor_cosine_similarity(U,V, return_norms=True)
Sh = np.abs(Sh)
# совпадение направления из Гессиана и направления к соседу
Se = tensor_cosine_similarity(U, index2-index1, return_norms=False)
Se = np.abs(Se)
N = (normU + normV)/2
N /= N.max()
#W = 1 - N*((1 - alpha)*Sh + alpha*Se)
W = 1 - N*(Sh * Se**alpha)
if return_W:
return W
Wflat = W.ravel()
cond = Wflat < 1
Sx = 1-Wflat[cond]
#thresholds = [1-threshold_minimum(Sx),
# 1-threshold_li(Sx),
# 1-threshold_triangle(Sx)
# ]
#th = np.max(thresholds)
th = 1 - (threshold_li(Sx))
#li = threshold_li(Wflat) if do_threshold else W.max()
th = th if do_threshold else W.max()
Wgood = Wflat < th
if verbose:
print('Thresholding done')
print('Threshold: ', th)
print('Max, min:', Wflat.max(), Wflat.min())
print('% supra-threshold', 100*np.sum(Wgood)/len(Wflat))
idx1 = (tuple(i) for i in index1.reshape((-1, index1.shape[-1]))[Wgood])
idx2 = (tuple(i) for i in index2.reshape((-1, index2.shape[-1]))[Wgood])
return zip(idx1, idx2, Wflat[Wgood])
```
```{python}
i, j, k = np.indices(final_image.shape)
idx = np.stack((i,j,k), axis=3)
idx.shape
```
```{python}
crops = prep_crops()
```
```{python}
alpha = 1
vectors = vectors_best
graph = nx.Graph()
for crop, acrop in tqdm(crops):
graph.add_weighted_edges_from(calc_edges(vectors[crop], vectors[acrop], idx[crop], idx[acrop], alpha=alpha))
```
## Добавление точек оболочки сомы в граф
```{python}
def get_mask_vals(idxs, mask):
idx_mask = mask[idxs[:,0], idxs[:,1], idxs[:,2]]
return idxs[idx_mask]
```
```{python}
def get_edges(mask, index1, index2, weight):
idx1 = [tuple(i) for i in get_mask_vals(index1.reshape((-1, index1.shape[-1])), mask)]
idx2 = [tuple(i) for i in get_mask_vals(index2.reshape((-1, index2.shape[-1])), mask)]
return zip(idx1, idx2, np.full(len(idx1), weight))
```
```{python}
Gsoma = nx.Graph()
```
```{python}
soma_shell_mask = get_shell_mask(soma_mask)
```
```{python}
for crop, acrop in tqdm(crops):
Gsoma.add_weighted_edges_from(get_edges(soma_shell_mask, idx[crop], idx[acrop], 0.7))
```
```{python tags=c()}
# %%time
for p1, p2, weight in Gsoma.edges(data=True):
try:
old_weight = graph.get_edge_data(p1, p2)['weight']
except Exception as exc:
old_weight = 1
graph.add_edge(p1, p2, weight=min(weight['weight'], old_weight))
```
```{python}
nodes = {n:n for n in graph.nodes()}
```
# Расчет путей, встречаемости точек в путях и слияние графов по путям
```{python}
from copy import copy
def find_paths(G, targets, min_count=1, min_path_length=10):
paths_dict = nx.multi_source_dijkstra_path(G, targets, )
#reverse order of points in paths, so that they start at tips
paths_dict = {path[-1]:path[::-1] for path in paths_dict.values() if len(path) >= min_path_length}
paths = list(paths_dict.values())
points = count_points_paths(paths)
qstack = np.zeros(vectors.shape[:-1]) #Это встречаемость точек в путях
for p, val in points.items():
if val >= min_count:
qstack[p] = np.log(val)
return qstack, paths_dict
```
## Building all paths at once, using the "best-scale" full graph
```{python}
# %time qstack, paths_best = find_paths(graph, soma_shell)
```
```{python}
all_tips = list(paths_best.keys())
```
```{python}
if verbose:
w = napari.view_image(final_image)
w.add_image(qstack)
```
```{python}
domain_outer_shell_pts = set(astro.morpho.mask2points(domain_outer_shell_mask))
domain_shell_pts = set(astro.morpho.mask2points(domain_shell_mask))
```
```{python}
tips = [t for t in tqdm(all_tips) if t in domain_shell_pts]
```
```{python}
len(tips), len(domain_outer_shell_pts)
```
```{python}
tip_paths = [np.array(paths_best[t]) for t in tips]
```
## Converting paths to directed graphs, merging and visualizing the graphs
```{python}
def path_to_graph(path):
"Converts an ordered list of points (path) into a directed graph"
g = nx.DiGraph()
root = tuple(path[-1])
for k,p in enumerate(path):
tp = tuple(p)
g.add_node(tp, root=root)
if k > 0:
g.add_edge(tp, tuple(path[k-1]), weight=1)
return g
def view_graph(g, viewer, color=None, kind='points', name=None):
if color is None:
color = np.random.rand(3)
pts = np.array(g.nodes)
kw = dict(face_color=color, edge_color=color, blending='translucent_no_depth', name=name)
if kind == 'points':
viewer.add_points(pts, size=1, **kw)
elif kind == 'path':
viewer.add_shapes(pts, edge_width=0.5, shape_type='path', **kw)
def get_tips(g):
return {n for n in g.nodes if len(list(g.successors(n))) == 0}
def get_roots(g):
return {n for n in g.nodes if len(list(g.predecessors(n))) < 1}
def get_branch_points(g):
return {n for n in gx.nodes if len(list(gx.successors(n))) > 1}
```
```{python}
def batch_compose_all(tip_paths, batch_size=10000):
graphs = []
for i, tp in enumerate(tqdm(tip_paths)):
graphs.append(path_to_graph(tp))
if i % batch_size == 0:
gx_all = nx.compose_all(graphs)
graphs = [gx_all]
return nx.compose_all(graphs)
```
```{python}
def filter_graph(graph, func = lambda node: True ):
"returns a view on graph for the nodes satisfying the condition defined by func(node)"
good_nodes = (node for node in graph.nodes if func(graph.nodes[node]))
return graph.subgraph(good_nodes)
```
```{python}
# %time gx_all = batch_compose_all(tip_paths)
```
# Добавление сопутствующей информации
```{python}
def get_attrs_by_nodes(G, arr, func=None):
nodesG = np.array(G.nodes())
attrs = arr[nodesG[:,0], nodesG[:,1], nodesG[:,2]]
if func is not None:
func_vect = np.vectorize(func)
attrs = func_vect(attrs)
return {tuple(node): attr for node, attr in zip(nodesG, attrs)}
```
```{python}
nx.set_node_attributes(gx_all,
get_attrs_by_nodes(gx_all, sigma_mask, lambda x: id2sigma[x]),
'sigma_mask')
```
```{python}
nx.set_node_attributes(gx_all,
get_attrs_by_nodes(gx_all, qstack),
'occurence')
```
```{python}
if verbose:
tmp_mask = np.zeros(final_image.shape, dtype=bool)
# tmp_mask.fill(False)
tmp_mask[67:90,246:271,206:224] = True
tmp_mask = tmp_mask & masks_exclusive[sigmas[-1]]
nx.set_node_attributes(graph,
get_attrs_by_nodes(graph, sigma_mask, lambda x: id2sigma[x]),
'sigma_mask')
tmp_graph = filter_graph(graph, lambda n: n['sigma_mask'] == sigmas[-1])
good_nodes = (node for node in tmp_graph.nodes() if tmp_mask[node])
tmp_graph = tmp_graph.subgraph(good_nodes)
tmp_pos = {node: node for node in tmp_graph.nodes()}
# w = napari.view_image(final_image)
props = {'weight': 1 - np.array([edgedata["weight"] for _, _, edgedata in tmp_graph.edges(data=True)])}
w.add_shapes(draw_edges(tmp_pos, tmp_graph.edges()), shape_type='path', edge_color='weight', edge_width=0.1, edge_colormap='cyan', properties=props)
```
```{python}
occ_acc = {}
for sigma in tqdm(sigmas):
sub = filter_graph(gx_all, lambda node: node['sigma_mask']==sigma)
occ_acc[sigma] = np.array([sub.nodes[n]['occurence'] for n in sub.nodes])
```
```{python}
fig, axs = plt.subplots(2,4, figsize=(9,6), sharex=True)
occ_threshs = {}
for ax, sigma in zip(np.ravel(axs), sigmas):
v_occ = occ_acc[sigma]
th = threshold_li(v_occ)
occ_threshs[sigma] = th
ax.set_title(f'σ={sigma :0.1f}, th={th:0.1f}')
ax.hist(v_occ, 50)
ax.axvline(th, color='red')
```
# Распределения встречаемостей по сигме
Попробуем взать только те пути, где встречаемость больше порога на соотв. сигме
```{python}
# %time high_occ_subs = [filter_graph(gx_all, lambda node: (node['occurence'] >=th) & (node['sigma_mask']==sigma)) for sigma, th in occ_threshs.items()]
# %time high_occurence_graph1 = nx.compose_all(high_occ_subs)
```
Проблема в том, что в получившимся графе многие ветки оказались отрезанными от сомы. Придется пересчитать пути до поверхности сомы. Но ребер-то между разрезанными ветками нет :)
ПОэтому перестроим еще раз граф, но уже используя только узлы из графа `high_occurence_graph1`
```{python}
high_occurence_graph1a = graph.subgraph(high_occurence_graph1.nodes) # узлы из изначального графа
```
```{python}
filtered_soma_shell = [p for p in soma_shell if p in high_occurence_graph1a]
len(filtered_soma_shell)
```