本文整理汇总了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();
}
示例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));
}