# HG changeset patch # User imgteam # Date 1699913464 0 # Node ID 99433164b5932b50212cdcd0fe5d216c24d6334d # Parent cb2d9de888a17a7e1fee7f13a18e4bdefc408747 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz/ commit 2286a6c9da88596349ed9d967c51541409c0a7bf diff -r cb2d9de888a1 -r 99433164b593 detection_viz.py --- a/detection_viz.py Wed Dec 18 05:02:11 2019 -0500 +++ b/detection_viz.py Mon Nov 13 22:11:04 2023 +0000 @@ -1,13 +1,13 @@ import argparse -import sys -import os import csv - + import matplotlib +import matplotlib.pyplot as plt +import skimage.io + + matplotlib.use('Agg') -import matplotlib.pyplot as plt -import skimage.io def plot_circles(file_name, ax, color, stroke_size, radius): resfile = open(file_name, 'rb') @@ -17,11 +17,12 @@ ax.add_patch(circ) resfile.close() + def detection_viz(input_file, output_file, tp=None, fn=None, fp=None, stroke_size=3, circle_radius=50): img = skimage.io.imread(input_file) fig = plt.figure(figsize=(40, 40)) - ax = fig.add_axes([0, 0, 1, 1]) + ax = fig.add_axes([0, 0, 1, 1]) ax.axis('off') plt.imshow(img) @@ -34,11 +35,12 @@ fig.canvas.print_png(output_file, dpi=1800) + if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument('input_file', type=argparse.FileType('r'), help='original file') # output file should not be of type argparse.FileType('w') sine it is created immediately in this case which leads to an error in renaming - parser.add_argument('out_file_str', type=str, help='string of output file name') + parser.add_argument('out_file_str', type=str, help='string of output file name') parser.add_argument('--tp', dest='input_tp_file', type=argparse.FileType('r'), help='input TP file') parser.add_argument('--fn', dest='input_fn_file', type=argparse.FileType('r'), help='input FN file') parser.add_argument('--fp', dest='input_fp_file', type=argparse.FileType('r'), help='input FP file') @@ -46,14 +48,14 @@ parser.add_argument('--circle_radius', dest='circle_radius', type=float, default=50, help='circle radius') args = parser.parse_args() - tp=None + tp = None if args.input_tp_file: - tp=args.input_tp_file.name - fn=None + tp = args.input_tp_file.name + fn = None if args.input_fn_file: - fn=args.input_fn_file.name - fp=None + fn = args.input_fn_file.name + fp = None if args.input_fp_file: - fp=args.input_fp_file.name + fp = args.input_fp_file.name detection_viz(args.input_file.name, args.out_file_str, tp=tp, fn=fn, fp=fp, stroke_size=args.thickness, circle_radius=args.circle_radius) diff -r cb2d9de888a1 -r 99433164b593 detection_viz.xml --- a/detection_viz.xml Wed Dec 18 05:02:11 2019 -0500 +++ b/detection_viz.xml Mon Nov 13 22:11:04 2023 +0000 @@ -1,5 +1,11 @@ - - Detection Visualization + + + + operation_3443 + + + galaxy_image_analysis + scikit-image matplotlib @@ -61,9 +67,15 @@ - - - + + + + + + + + +