computationalpathologygroup / ASAP

Program for the analysis and visualization of whole-slide images in digital pathology
https://computationalpathologygroup.github.io/ASAP/
GNU General Public License v2.0
614 stars 165 forks source link

Is there anyway to extract the nuclei detected results as annotations or RGB files? #36

Closed bohu615 closed 7 years ago

bohu615 commented 7 years ago

Is the nuclei detection function python supported?

I'll appreciate it if you could answer my question :)

GeertLitjens commented 7 years ago

Hi, yes, you can use it from Python via de wsifilters.NucleiDetectionWholeSlideFilter class which processes an entire slide. Please note that currently it will perform an automated color deconvolution if the input is RGB and this is not yet configurable. You could try to add that yourself in the C++ code. All parameters are set via setter and getter functions. You can look at the C++ header for details

bohu615 commented 7 years ago

thank you very much!