raster

huff model in gis

hello all, how would be the simplest version of the Huff model for territorial and economic analysis? sig using algorithms that I recommend or free libraries for working with files both vector and raster OGR ...

Fastest way to draw BufferedImages to another BufferedImage

I am attempting to create a mosaic of images in Java. I calculate the size of the new image I'm creating, and then for each subimage that will be part of the mosaic, I do a paint call. In pseudocode: create buffered image big enough to hold entire mosaic create Graphics2D context from that image for each buffered subimage that will...

Direct3D vector output?

Is there any means to interpret Direct3D output as a series of vectors instead of a raster image? I am hoping I could use such a feature to generate a PDF file containing the rendered Direct3D output. Am I being too optimistic? ...

How to create a Raster from a pixel float array in Java?

I'm trying to take a BufferedImage, apply a Fourier transform (using jtransforms), and write the data back to the BufferedImage. But I'm stuck creating a new Raster to set the results back, am I missing something here? BufferedImage bitmap; float [] bitfloat = null; bitmap = ImageIO.read(new File("filename")); FloatDCT_2D dct = new Flo...