Skip to content

Instantly share code, notes, and snippets.

@tpietzsch
Created January 18, 2016 20:50
Show Gist options
  • Save tpietzsch/5a09ea73ff711b243309 to your computer and use it in GitHub Desktop.
Save tpietzsch/5a09ea73ff711b243309 to your computer and use it in GitHub Desktop.
public static void main( final String[] args )
{
final Img< IntType > img = PlanarImgs.ints( 1000, 1000 );
// final Img< IntType > img = ArrayImgs.ints( 1000, 1000 );
final RandomAccess< IntType > a = img.randomAccess();
final IterableInterval< IntType > iterable = Views.flatIterable( Views.interval( img, Intervals.createMinMax( 0, 100, 999, 199 ) ) );
final Cursor< IntType > c = iterable.localizingCursor();
c.fwd();
System.out.println( Util.printCoordinates( c ) );
a.setPosition( c );
a.get().set( 100 );
System.out.println( a.get() );
System.out.println( c.get() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment