当前位置: 首页>>代码示例>>Java>>正文


Java FolderOpener类代码示例

本文整理汇总了Java中ij.plugin.FolderOpener的典型用法代码示例。如果您正苦于以下问题:Java FolderOpener类的具体用法?Java FolderOpener怎么用?Java FolderOpener使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


FolderOpener类属于ij.plugin包,在下文中一共展示了FolderOpener类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import ij.plugin.FolderOpener; //导入依赖的package包/类
public static void main( final String[] args )
	{
		new ImageJ();
//		final ImagePlus imp = new ImagePlus( "/data/hanslovskyp/davi_toy_set/substacks/shuffle/03/data/data.tif" );
		final ImagePlus imp = new FolderOpener().openFolder( "/data/hanslovskyp/forPhilipp/substacks/03/data/" );
//		final ImagePlus imp = new FolderOpener().openFolder( "/data/hanslovskyp/davi_toy_set/data/seq" );
//		final ImagePlus imp = new ImagePlus( "/data/hanslovskyp/strip-example-small.tif" );
		imp.show();
		new ZPositionCorrection().run( "" );
	}
 
开发者ID:saalfeldlab,项目名称:z-spacing,代码行数:11,代码来源:ZPositionCorrection.java

示例2: getBatchImages

import ij.plugin.FolderOpener; //导入依赖的package包/类
public static String[] getBatchImages(String directory)
{
	if (directory == null)
		return null;

	// Get a list of files
	File[] fileList = (new File(directory)).listFiles();
	if (fileList == null)
		return null;

	// Exclude directories
	String[] list = new String[fileList.length];
	int c = 0;
	for (int i = 0; i < list.length; i++)
		if (fileList[i].isFile())
			list[c++] = fileList[i].getName();
	list = Arrays.copyOf(list, c);

	// Now exclude non-image files as per the ImageJ FolderOpener
	FolderOpener fo = new FolderOpener();
	list = fo.trimFileList(list);
	if (list == null)
		return null;

	list = fo.sortFileList(list);

	// Now exclude mask images
	c = 0;
	for (String name : list)
	{
		if (name.contains("mask."))
			continue;
		list[c++] = name;
	}
	return Arrays.copyOf(list, c);
}
 
开发者ID:aherbert,项目名称:GDSC,代码行数:37,代码来源:FindFoci.java

示例3: getFileFromOption

import ij.plugin.FolderOpener; //导入依赖的package包/类
public static ImagePlus getFileFromOption( final String path )
{
	return path.equals( "" ) ? IJ.getImage() : ( new File( path ).isDirectory() ? FolderOpener.open( path ) : new ImagePlus( path ) );
}
 
开发者ID:saalfeldlab,项目名称:z-spacing,代码行数:5,代码来源:ZPositionCorrection.java


注:本文中的ij.plugin.FolderOpener类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。