Codota Logo
it.geosolutions.jaiext.warp
Code IndexAdd Codota to your IDE (free)

How to use it.geosolutions.jaiext.warp

Best Java code snippets using it.geosolutions.jaiext.warp (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
origin: it.geosolutions.jaiext.warp/jt-warp

/**
 * Returns a RandomIterator on the input image.
 * 
 * @param src
 * @return
 */
protected RandomIter getRandomIterator(final PlanarImage src, BorderExtender extender) {
  return getRandomIterator(src, 0, 1, 0, 1, extender);
}
origin: it.geosolutions.jaiext.warp/jt-warp

/**
 * Returns an array of <code>PropertyGenerators</code> implementing property inheritance for the "Warp" operation.
 * 
 * @return An array of property generators.
 */
public PropertyGenerator[] getPropertyGenerators() {
  PropertyGenerator[] pg = new PropertyGenerator[1];
  pg[0] = new WarpPropertyGenerator();
  return pg;
}
origin: geosolutions-it/jai-ext

/**
 * Test with ROI and with NoData
 */
public void testImageNoDataROI(InterpolationType interpType) {
  boolean roiUsed = true;
  boolean noDataUsed = true;
  TestSelection testSelect = TestSelection.ROI_NO_DATA;
  for (int i = 0; i < images.length; i++) {
    testWarp(images[0], noDataUsed, roiUsed, warpObj, noDataValueB, interpType, testSelect);
  }
}
origin: geotools/geotools

PlanarImage.wrapRenderedImage(new WarpRIF().create(paramBlk, localHints));
origin: geosolutions-it/jai-ext

  /**
   * Static method for disposing the test environment.
   */
  @AfterClass
  public static void finalStuff() {
    TestWarp.finalStuff();
  }
}
origin: geosolutions-it/jai-ext

@Test
public void testImageNoData() {
  super.testImageNoData(interpType);
}
origin: geosolutions-it/jai-ext

@Test
public void testImageROI() {
  super.testImageROI(interpType);
}
origin: geosolutions-it/jai-ext

@Test
public void testImage() {
  super.testImage(interpType);
}
origin: geosolutions-it/jai-ext

@Test
public void testImageNoDataROI() {
  super.testImageNoDataROI(interpType);
}
origin: geosolutions-it/jai-ext

/**
 * Test with ROI and without NoData
 */
public void testImageROI(InterpolationType interpType) {
  boolean roiUsed = true;
  boolean noDataUsed = false;
  TestSelection testSelect = TestSelection.ROI_ONLY_DATA;
  for (int i = 0; i < images.length; i++) {
    testWarp(images[0], noDataUsed, roiUsed, warpObj, noDataValueB, interpType, testSelect);
  }
}
origin: geosolutions-it/jai-ext

  /**
   * Static method for disposing the test environment.
   */
  @AfterClass
  public static void finalStuff() {
    TestWarp.finalStuff();
  }
}
origin: geosolutions-it/jai-ext

/**
 * Returns a RandomIterator on the input image.
 * 
 * @param src
 * @return
 */
protected RandomIter getRandomIterator(final PlanarImage src, BorderExtender extender) {
  return getRandomIterator(src, 0, 1, 0, 1, extender);
}
origin: geosolutions-it/jai-ext

/**
 * Returns an array of <code>PropertyGenerators</code> implementing property inheritance for the "Warp" operation.
 * 
 * @return An array of property generators.
 */
public PropertyGenerator[] getPropertyGenerators() {
  PropertyGenerator[] pg = new PropertyGenerator[1];
  pg[0] = new WarpPropertyGenerator();
  return pg;
}
origin: geosolutions-it/jai-ext

@Test
public void testImageNoData() {
  super.testImageNoData(interpType);
}
origin: geosolutions-it/jai-ext

@Test
public void testImageROI() {
  super.testImageROI(interpType);
}
origin: geosolutions-it/jai-ext

@Test
public void testImage() {
  super.testImage(interpType);
}
origin: geosolutions-it/jai-ext

/**
 * Test without ROI and without NoData
 */
public void testImage(InterpolationType interpType) {
  boolean roiUsed = false;
  boolean noDataUsed = false;
  TestSelection testSelect = TestSelection.NO_ROI_ONLY_DATA;
  for (int i = 0; i < images.length; i++) {
    testWarp(images[0], noDataUsed, roiUsed, warpObj, noDataValueB, interpType, testSelect);    
  }
}
origin: geosolutions-it/jai-ext

/**
 * Static method for disposing the test environment.
 */
@AfterClass
public static void finalStuff() {
  TestWarp.finalStuff();
}
origin: geosolutions-it/jai-ext

/**
 * Test without ROI and with NoData
 */
public void testImageNoData(InterpolationType interpType) {
  boolean roiUsed = false;
  boolean noDataUsed = true;
  TestSelection testSelect = TestSelection.NO_ROI_NO_DATA;
  for (int i = 0; i < images.length; i++) {
    testWarp(images[0], noDataUsed, roiUsed, warpObj, noDataValueB, interpType, testSelect);
  }
}
origin: geosolutions-it/jai-ext

  /**
   * Static method for disposing the test environment.
   */
  @AfterClass
  public static void finalStuff() {
    TestWarp.finalStuff();
  }
}
it.geosolutions.jaiext.warp

Most used classes

  • WarpRIF
    A RIF supporting the "Warp" operation in the rendered image layer.
  • WarpDescriptor
    An OperationDescriptor describing the "Warp" operation. The "Warp" operation performs (possibly filt
  • WarpNearestOpImage
    An OpImage implementing the general "Warp" operation as described in javax.media.jai.operator.WarpD
  • BicubicWarpTest
    Test class which extends the TestWarp class and executes all the tests with the bicubic interpolatio
  • BilinearWarpTest
    Test class which extends the TestWarp class and executes all the tests with the bilinear interpolati
  • GeneralWarpTest,
  • NearestWarpTest,
  • TestWarp,
  • WarpBicubicOpImage,
  • WarpBilinearOpImage,
  • WarpGeneralOpImage,
  • WarpOpImage,
  • WarpPropertyGenerator
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now