852e62f01cc9dffd75cd065584f71a2601c6d389,mahotas/demos/nuclear.py,,,#,6

Before Change


f = mahotas.gaussian_filter(f, 4)
f = (f> f.mean())
imshow(f)
show()

labeled, n_nucleus  = mahotas.label(f)
print("Found {} nuclei.".format(n_nucleus))
imshow(labeled)

After Change


plt.imshow(f)


plt.subplot(3,2,3)
labeled, n_nucleus  = mahotas.label(f)
plt.title("Found {} nuclei.".format(n_nucleus))
plt.imshow(labeled)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: luispedro/mahotas
Commit Name: 852e62f01cc9dffd75cd065584f71a2601c6d389
Time: 2019-05-18
Author: v0lt.lucas@gmail.com
File Name: mahotas/demos/nuclear.py
Class Name:
Method Name:


Project Name: nipy/dipy
Commit Name: 6c524d66dcd30d98a0f0c991252a3be644fa58ef
Time: 2013-09-11
Author: stjeansam@gmail.com
File Name: doc/examples/compute_SNR_in_corpus_callosum.py
Class Name:
Method Name:


Project Name: nipy/dipy
Commit Name: cf7d0bdc4133ea3248e054fa93aa2b5a6f8f2fca
Time: 2013-09-11
Author: stjeansam@gmail.com
File Name: doc/examples/compute_SNR_in_corpus_callosum.py
Class Name:
Method Name: