From b191986456161c954247293fca4faa9687bfc820 Mon Sep 17 00:00:00 2001 From: Brian Northan Date: Fri, 17 May 2024 08:09:22 -0400 Subject: [PATCH] Add test image for bnorthan Linux machine... 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. --- .../net/haesleinhuepf/clijx/tests/LaunchIJ.java | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/test/java/net/haesleinhuepf/clijx/tests/LaunchIJ.java b/src/test/java/net/haesleinhuepf/clijx/tests/LaunchIJ.java index 00bdbc2..aaf1684 100644 --- a/src/test/java/net/haesleinhuepf/clijx/tests/LaunchIJ.java +++ b/src/test/java/net/haesleinhuepf/clijx/tests/LaunchIJ.java @@ -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"); }