Package net.imglib2.roi

Examples of net.imglib2.roi.AbstractRegionOfInterest.move()


      /* (non-Javadoc)
       * @see imagej.data.overlay.Overlay#move(double[])
       */
      public void move(double[] deltas) {
        roi.move(deltas);
      }
    };
    Dataset dataset = getDatasetService().create(new long [] { 30, 30 }, "Foo", new AxisType [] { Axes.X, Axes.Y }, 8, true, false);
    Display<?> display = getDisplayService().createDisplay(getImageDisplayService().createDataView(dataset));
    assertTrue(display instanceof ImageDisplay);
View Full Code Here


      /* (non-Javadoc)
       * @see imagej.data.overlay.Overlay#move(double[])
       */
      public void move(double[] deltas) {
        roi.move(deltas);
      }
    };
    Dataset dataset = getDatasetService().create(new long [] { 30, 30 }, "Foo", new AxisType [] { Axes.X, Axes.Y }, 8, true, false);
    Display<?> display = getDisplayService().createDisplay(getImageDisplayService().createDataView(dataset));
    assertTrue(display instanceof ImageDisplay);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.