Skip to content

Commit

Permalink
Merge pull request #63 from ilastik/fix-pixel-class-undefined-export-…
Browse files Browse the repository at this point in the history
…source

explicitly setting export_source in any case
  • Loading branch information
k-dominik authored Jul 28, 2020
2 parents f8b867b + ded017f commit d3e9ec6
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ protected List<String> buildCommandLine(Map<String, String> tempFiles, PixelPred
if (pixelPredictionType == PixelPredictionType.Segmentation) {
commandLine.add("--export_source=Simple Segmentation");
}
else if (pixelPredictionType == PixelPredictionType.Probabilities) {
commandLine.add("--export_source=Probabilities");
}
commandLine.add("--raw_data=" + tempFiles.get(rawInputTempFile));
commandLine.add("--output_filename_format=" + tempFiles.get(outputTempFile));

Expand Down

0 comments on commit d3e9ec6

Please sign in to comment.