imglib / imglib2-realtransform

Spatial transformations for ImgLib2
Other
7 stars 7 forks source link

Create RealViews.hyperSlice #48

Open axtimwalde opened 5 months ago

axtimwalde commented 5 months ago

This will give us several things:

  1. We can generate $n - m$-dimensional hyperslices or stacks thereof.
  2. We can interpolate those hyperslices with stack interpolation which solves the unwanted shearing of interpolation kernels along the discretized axes (cool for sheared lighht sheet images, serial section alignments and similar stuff)

Stack interpolation likely will have to be revisited to replace the Lists<RealRandomAccessible<T>> by RandomAccessible<RealRandomAccessible<T>>, or introduce a truly 1-dimensional lazy evaluated long list, this could be called Stack<R> extends RandomAccessible<R> with R being the hyperslices (this should be discussed in more detail).