Package org.imagearchive.lsm.toolbox.gui

Examples of org.imagearchive.lsm.toolbox.gui.ImagePreview


    ImagePlus[] imp = null;
    if (arg.equals("")) {
      JFileChooser fc = new JFileChooser();
      fc.addChoosableFileFilter(new ImageFilter());
      fc.setAcceptAllFileFilterUsed(false);
      fc.setAccessory(new ImagePreview(masterModel, fc));
      fc.setName("Open Zeiss LSM image");
      String dds = OpenDialog.getDefaultDirectory();
      if (dds != null) {
        File dd = new File(dds);
        if (dd != null && dd.isDirectory())
View Full Code Here

TOP

Related Classes of org.imagearchive.lsm.toolbox.gui.ImagePreview

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.