Skip to content

Commit

Permalink
bugfix: parameters were passed in wrong order
Browse files Browse the repository at this point in the history
Closes #53

Co-Authored-By: Jan Brocher <10721817+biovoxxel@users.noreply.github.com>
  • Loading branch information
haesleinhuepf and biovoxxel committed Apr 23, 2022
1 parent 90bb852 commit 70d0adf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public boolean executeCL() {
}

public static boolean generateParametricImage(CLIJ2 clij2, ClearCLImageInterface label_map, ClearCLImageInterface parameter_value_vector, ClearCLImageInterface parametric_image_destination) {
clij2.replaceIntensities(parameter_value_vector, label_map, parametric_image_destination);
clij2.replaceIntensities(label_map, parameter_value_vector, parametric_image_destination);
return true;
}

Expand Down

0 comments on commit 70d0adf

Please # to comment.