As suggested by @ctrueden in imagej/imagej-common#80 (comment), let's improve ResultsPostprocessor to not only check for "simple" types but handle any convertible types when processing outputs:
|
module.getInfo().outputs().forEach(output -> { |
|
final String name = output.getName(); |
|
if (module.isOutputResolved(name)) return; |
|
if (module.getOutput(name) == null) return; |
|
if (!isSimple(module, output)) return; |
|
outputs.add(output); |
|
}); |
As suggested by @ctrueden in imagej/imagej-common#80 (comment), let's improve
ResultsPostprocessorto not only check for "simple" types but handle any convertible types when processing outputs:scijava-table/src/main/java/org/scijava/table/process/ResultsPostprocessor.java
Lines 73 to 79 in 2bcd3d8