Package org.imagearchive.lsm.toolbox

Examples of org.imagearchive.lsm.toolbox.BatchConverter


    });
   
  }
 
  public void doConvert(ArrayList list, File outputDir){
    BatchConverter converter = new BatchConverter(masterModel);
    IJ.showStatus("Conversion started");
    for (int i = 0; i < list.size(); i++){
       IJ.showStatus("Converting "+i+"/"+list.size());
       converter.convertFile(((File)list.get(i)).getAbsolutePath(),outputDir.getAbsolutePath(),
           (String)formatCombo.getSelectedItem(),verboseCB.isSelected(),
           dirCB.isSelected());
     }
     IJ.showProgress(1.0);
       IJ.showStatus("Conversion done");
View Full Code Here

TOP

Related Classes of org.imagearchive.lsm.toolbox.BatchConverter

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.