Skip to content

Commit 70d0adf

Browse files
bugfix: parameters were passed in wrong order
Closes #53 Co-Authored-By: Jan Brocher <[email protected]>
1 parent 90bb852 commit 70d0adf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/haesleinhuepf/clij2/plugins/GenerateParametricImage.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public boolean executeCL() {
3838
}
3939

4040
public static boolean generateParametricImage(CLIJ2 clij2, ClearCLImageInterface label_map, ClearCLImageInterface parameter_value_vector, ClearCLImageInterface parametric_image_destination) {
41-
clij2.replaceIntensities(parameter_value_vector, label_map, parametric_image_destination);
41+
clij2.replaceIntensities(label_map, parameter_value_vector, parametric_image_destination);
4242
return true;
4343
}
4444

0 commit comments

Comments
 (0)