本文整理匯總了Java中mpicbg.spim.io.IOFunctions.printIJLog方法的典型用法代碼示例。如果您正苦於以下問題:Java IOFunctions.printIJLog方法的具體用法?Java IOFunctions.printIJLog怎麽用?Java IOFunctions.printIJLog使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類mpicbg.spim.io.IOFunctions
的用法示例。
在下文中一共展示了IOFunctions.printIJLog方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: main
import mpicbg.spim.io.IOFunctions; //導入方法依賴的package包/類
public static void main( String args[] )
{
new ImageJ();
IOFunctions.printIJLog = true;
final LoadParseQueryXML lpq = new LoadParseQueryXML();
final ArrayList< String > queryFor = new ArrayList< String >();
queryFor.add( "Timepoint" );
queryFor.add( "channel" );
queryFor.add( "angle" );
queryFor.add( "illumination" );
lpq.queryXML( true, true, true, true );
for ( final TimePoint i : lpq.getTimePointsToProcess() )
System.out.println( i.getId() );
for ( final ViewSetup v : lpq.getViewSetupsToProcess() )
{
System.out.println( v.getId() + " " + v.getAngle().getName() + " " + v.getChannel().getName() + " " + v.getIllumination().getName() );
}
}
示例2: run
import mpicbg.spim.io.IOFunctions; //導入方法依賴的package包/類
@Override
public void run(String arg0)
{
// output to IJ.log
IOFunctions.printIJLog = true;
final SPIMConfiguration conf = getParameters();
// cancelled
if ( conf == null )
return;
conf.readSegmentation = true;
conf.readRegistration = true;
// we need the individual images back by reference
conf.isDeconvolution = true;
IJ.log( "Loading images sequentially: " + conf.deconvolutionLoadSequentially );
// set the instance to be called
conf.instance = this;
// reconstruction calls deconvolve for each timepoint
new Reconstruction( conf );
}
示例3: main
import mpicbg.spim.io.IOFunctions; //導入方法依賴的package包/類
public static void main( String[] args )
{
IOFunctions.printIJLog = true;
new ImageJ();
if ( System.getProperty("os.name").toLowerCase().contains( "win" ) )
GenericLoadParseQueryXML.defaultXMLfilename = "Z:\\Data\\Expansion Microscopy/dataset.xml";
else if ( !System.getProperty("os.name").toLowerCase().contains( "mac" ) )
GenericLoadParseQueryXML.defaultXMLfilename = "/home/preibisch/Documents/Microscopy/SPIM/HisYFP-SPIM//dataset_tp18.xml";
else
GenericLoadParseQueryXML.defaultXMLfilename = "/Users/spreibi/Documents/BIMSB/Projects/CLARITY/Big Data Sticher/Dros_converted/dataset.xml";
new BigStitcher().run( );
}
示例4: main
import mpicbg.spim.io.IOFunctions; //導入方法依賴的package包/類
public static void main( String args[] )
{
StackList.defaultDirectory = "/Users/preibischs/Documents/Microscopy/SPIM/HisYFP-SPIM";
IOFunctions.printIJLog = true;
new ImageJ();
new Define_Multi_View_Dataset().run( null );
//System.exit( 0 );
}
示例5: run
import mpicbg.spim.io.IOFunctions; //導入方法依賴的package包/類
@Override
public void run(String arg0)
{
// output to IJ.log
IOFunctions.printIJLog = true;
final SPIMConfiguration conf = getParameters();
if ( conf == null )
return;
}
示例6: run
import mpicbg.spim.io.IOFunctions; //導入方法依賴的package包/類
@Override
public void run(String arg0)
{
// output to IJ.log
IOFunctions.printIJLog = true;
final GenericDialog gd = new GenericDialog( "Multi-view fusion" );
gd.addChoice( "Select_channel type", fusionType, fusionType[ defaultFusionType ] );
gd.addMessage( "Please note that the Multi-view fusion is based on a publication.\n" +
"If you use it successfully for your research please be so kind to cite our work:\n" +
"Preibisch et al., Nature Methods (2010), 7(6):418-419\n" );
MultiLineLabel text = (MultiLineLabel) gd.getMessage();
GUIHelper.addHyperLinkListener( text, paperURL );
gd.showDialog();
if ( gd.wasCanceled() )
return;
final int channelChoice = gd.getNextChoiceIndex();
defaultFusionType = channelChoice;
final SPIMConfiguration conf;
if ( channelChoice == 0 )
conf = getParameters( false );
else
conf = getParameters( true );
// cancelled
if ( conf == null )
return;
conf.readSegmentation = true;
conf.readRegistration = true;
new Reconstruction( conf );
}
示例7: main
import mpicbg.spim.io.IOFunctions; //導入方法依賴的package包/類
public static void main( String[] args )
{
IOFunctions.printIJLog = true;
new ImageJ();
new Specify_Calibration().run( null );
}