Mercurial > repos > imgteam > count_objects
view count_objects.py @ 0:784d5cf56c82 draft
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/count_objects/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
author | imgteam |
---|---|
date | Sat, 09 Feb 2019 14:16:39 -0500 |
parents | |
children | faa34f06aa6c |
line wrap: on
line source
#!/usr/bin/python import argparse import numpy as np import os import skimage.io from skimage.measure import regionprops parser = argparse.ArgumentParser(description='Count Objects') parser.add_argument('input_file', type=argparse.FileType('r'), help='Label input file') parser.add_argument('output_file', type=argparse.FileType('w'), help='Tabular output file') args = parser.parse_args() img_raw = skimage.io.imread(args.input_file.name) res = len(regionprops(img_raw)) text_file = open(args.output_file.name, "w") text_file.write("objects\n%s" % res) text_file.close()