Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tischi committed Jul 23, 2024
1 parent 7382a71 commit a540cf2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>org.embl.mobie</groupId>
<artifactId>mobie-viewer-fiji</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.3.4-SNAPSHOT</version>

<!-- mvn clean install -Dmaven.test.skip=true -Dscijava.app.directory=/Users/tischer/Desktop/Fiji/Fiji-MoBIE.app -->

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package projects.bacteria_halo_quantification;

import net.imagej.ImageJ;
import org.embl.mobie.command.open.OpenImageAndLabelsCommand;
import org.embl.mobie.command.open.OpenMultipleImagesAndLabelsCommand;

import java.io.File;
Expand All @@ -11,15 +12,11 @@ public static void main( String[] args )
{
new ImageJ().ui().showUI();

OpenMultipleImagesAndLabelsCommand command = new OpenMultipleImagesAndLabelsCommand();

OpenImageAndLabelsCommand command = new OpenImageAndLabelsCommand();
String root = "/Users/tischer/Documents/bacteria-halo-quantification-data/many_images_output/";
//String root = "/Users/tischer/Documents/bacteria-halo-quantification-data/few_images_output/";
command.image0 = new File( root + ".*_intensities.tiff" );
//command.image1 = new File( root + ".*_bg_mask.tiff" );

command.labels0 = new File( root + ".*_halo_labels.tiff" );
command.table0 = new File( root + ".*_measurements.csv" );
command.image = new File( root + ".*_intensities.tiff" );
command.labels = new File( root + ".*_halo_labels.tiff" );
command.table = new File( root + ".*_measurements.csv" );

command.run();
}
Expand Down
5 changes: 5 additions & 0 deletions src/test/resources/collections/blobs-grid-table.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
uri type affine color view labels_table
blobs.tif intensities (10,0,0,0,0,10,0,0,0,0,1,0) grid_intensities
blobs-labels.tif labels (10,0,0,0,0,10,0,0,0,0,1,0) grid_labels blobs-labels.csv
blobs2.tif intensities (10,0,0,0,0,10,0,0,0,0,1,0) grid_intensities
blobs2-labels.tif labels (10,0,0,0,0,10,0,0,0,0,1,0) grid_labels blobs2-labels.csv

0 comments on commit a540cf2

Please sign in to comment.