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


Java Plot.getLimits方法代码示例

本文整理汇总了Java中ij.gui.Plot.getLimits方法的典型用法代码示例。如果您正苦于以下问题:Java Plot.getLimits方法的具体用法?Java Plot.getLimits怎么用?Java Plot.getLimits使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ij.gui.Plot的用法示例。


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

示例1: showHistogram

import ij.gui.Plot; //导入方法依赖的package包/类
private void showHistogram(String name, double[] values, int bins, Statistics stats, WindowOrganiser wo)
{
	DoubleData data = new StoredData(values, false);
	double minWidth = 0;
	int removeOutliers = 0;
	int shape = Plot.CIRCLE; // Plot2.BAR; // A bar chart confuses the log plot since it plots lines to zero.
	String label = String.format("Mean = %s +/- %s", Utils.rounded(stats.getMean()),
			Utils.rounded(stats.getStandardDeviation()));
	int id = Utils.showHistogram(TITLE, data, name, minWidth, removeOutliers, bins, shape, label);
	if (Utils.isNewWindow())
		wo.add(id);
	// Redraw using a log scale. This requires a non-zero y-min
	Plot plot = Utils.plot;
	double[] limits = plot.getLimits();
	plot.setLimits(limits[0], limits[1], 1, limits[3]);
	plot.setAxisYLog(true);
	Utils.plot.updateImage();
}
 
开发者ID:aherbert,项目名称:GDSC-SMLM,代码行数:19,代码来源:CMOSAnalysis.java

示例2: addRoi

import ij.gui.Plot; //导入方法依赖的package包/类
private void addRoi(PlotWindow pw)
{
	Plot plot = pw.getPlot();
	int x1 = (int) plot.scaleXtoPxl(z[minz]);
	int x2 = (int) plot.scaleXtoPxl(z[maxz]);
	double[] limits = plot.getLimits();
	int y1 = (int) plot.scaleYtoPxl(limits[3]);
	int y2 = (int) plot.scaleYtoPxl(limits[2]);
	pw.getImagePlus().setRoi(new Roi(x1, y1, x2 - x1, y2 - y1));
}
 
开发者ID:aherbert,项目名称:GDSC-SMLM,代码行数:11,代码来源:AstigmatismModelManager.java


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