Skip to content

Commit

Permalink
Add test image for bnorthan Linux machine...
Browse files Browse the repository at this point in the history
This will get annoying eventually if there is a massive list of test
image for different machines so long term need a better method... this
is a small fun project though, and the near term goal is to get it out
to a couple of people, so for now this mess is OK.
  • Loading branch information
bnorthan committed May 17, 2024
1 parent 3900bff commit b191986
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/test/java/net/haesleinhuepf/clijx/tests/LaunchIJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,16 @@ else if (dataNum==2) {
}

else if (dataNum==3) {

Dataset dataset = (Dataset) ij.io()
.open("D:\\images\\tnia-python-images\\imagesc/2024_02_15_clij_z_tiling/im.tif");
Dataset psf = (Dataset) ij.io()
.open("D:\\images\\tnia-python-images\\imagesc/2024_02_15_clij_z_tiling/psf.tif");
Dataset dataset = (Dataset) ij.io()
.open("/home/bnorthan/images/tnia-python-images/imagesc/2024_02_15_clij_z_tiling/im.tif");
Dataset psf = (Dataset) ij.io()
.open("/home/bnorthan/images/tnia-python-images/imagesc/2024_02_15_clij_z_tiling/psf.tif");


//Dataset dataset = (Dataset) ij.io()
// .open("D:\\images\\tnia-python-images\\imagesc/2024_02_15_clij_z_tiling/im.tif");
//Dataset psf = (Dataset) ij.io()
// .open("D:\\images\\tnia-python-images\\imagesc/2024_02_15_clij_z_tiling/psf.tif");
clij2.show(dataset, "data");
clij2.show(psf, "psf");
}
Expand Down

0 comments on commit b191986

Please sign in to comment.