Seg3D
Seg3D copied to clipboard
controller window python syntax is not correct for multiple inputs
tools that can accept multiple layers, like crop, transform, resample, flip/rotate, etc., have the wrong python syntax printed in the controller window. It is with the layerids input. it should be a single list of strings for the layer id. It currently reads:
crop(layerids=[[layer_0]],...);
when it should be:
crop(layerids=['layer_0'],...);
there are no problems with the other inputs.