Mercurial > repos > thomaswollmann > wsi_extract_top_view
view wsi_extract_top_view.py @ 1:257397c40c25 draft default tip
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/wsi_extract_top_view/ commit d93e1dd276027cfc3fb518236110395a23d96f66
author | thomaswollmann |
---|---|
date | Wed, 16 Jan 2019 15:36:04 -0500 |
parents | 9f01fd145af4 |
children |
line wrap: on
line source
import argparse import openslide import os import fnmatch import skimage.io import numpy as np def wsi_extract_top_view(input_path, out_path): img_raw = openslide.OpenSlide(input_path) top_size = img_raw.level_dimensions[len(img_raw.level_dimensions)-1] img_area = img_raw.read_region((0,0), len(img_raw.level_dimensions)-1, top_size) img_area = np.asarray(img_area, dtype=np.uint8) skimage.io.imsave(out_path, img_area, plugin="tifffile") if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument('input_file', type=argparse.FileType('r'), help='input file') parser.add_argument('out_file', help='out file') args = parser.parse_args() wsi_extract_top_view(args.input_file.name, args.out_file)