|
On 19 Mar, 13:45, "Heinz " <heinz.wid...@ch.schindler.com> wrote:
> Hello
> I have a result, that I'd like to display as using IMAGE.
> The size of the result is something like 10000 times 20000 points so I can not use it directly. (Java is just dying)
>
> So I interpolate down the result to 500 times 1000 points, which I can display without problems using IMAGE. I can of course also zoom in. But I'd like to have a function, that by zooming there is a new interpolation over the result made, so that I can also see details in the result.
>
> I mean if java would be capable to display the 10000 times 20000 matrix, then I could zoom in end see the single data point. But if I zoom in the downsampled matrix I see only downsampled data.
>
> So, how can i solve this problem ?
Don't know how to solve this, but it is a standard problem
when displaying large amounts of data, e.g. in Google Earth:
You start with an overview that show large areas in coarse
details, and replace it by smaller areas with higher details
as you zoom in. It's technically *very* demanting to implement
that kind of stuff, particularly if you want it to respond fast.
Look for multiresolution image browsers, e.g. for satellite
images. That kind of stuff might even exist for matlab.
Rune
|