Skip to content

Commit

Permalink
Clean the test drives.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinevez committed Nov 29, 2023
1 parent 25b0092 commit 678b387
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,14 @@
*/
package fiji.plugin.trackmate.weka;

import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

import fiji.plugin.trackmate.LoadTrackMatePlugIn;
import ij.ImageJ;

public class LoadTrackMateWekaTestDrive
{

public static void main( final String[] args ) throws ClassNotFoundException, InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException
public static void main( final String[] args )
{
UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() );
ImageJ.main( args );
final String path = "samples/crop-2tp.xml";
new LoadTrackMatePlugIn().run( path );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,18 @@
*/
package fiji.plugin.trackmate.weka;

import java.io.IOException;

import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

import fiji.plugin.trackmate.TrackMatePlugIn;
import ij.IJ;
import ij.ImageJ;

public class TrackMateWeka3DTestDrive
{

public static void main( final String[] args ) throws IOException, ClassNotFoundException, InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException
public static void main( final String[] args )
{
UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() );
ImageJ.main( args );
// final String path = "samples/merged.tif";
final String path = "samples/mesh/CElegansMask3D.tif";
final String path = "samples/merged.tif";
// final String path = "samples/mesh/CElegansMask3D.tif";
IJ.openImage( path ).show();
new TrackMatePlugIn().run( null );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,17 @@
*/
package fiji.plugin.trackmate.weka;

import java.io.IOException;

import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

import fiji.plugin.trackmate.TrackMatePlugIn;
import ij.IJ;
import ij.ImageJ;

public class TrackMateWekaTestDrive
{

public static void main( final String[] args ) throws IOException, ClassNotFoundException, InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException
public static void main( final String[] args )
{
UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() );
ImageJ.main( args );
final String path = "samples/crop-2tp.tif";
final String path = "samples/MAX_Merged.tif";
IJ.openImage( path ).show();
new TrackMatePlugIn().run( null );
}
Expand Down

0 comments on commit 678b387

Please sign in to comment.