-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add TransformLine2D/3D velocity templates
- Loading branch information
Showing
6 changed files
with
419 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
templates/main/java/net/imglib2/algorithm/blocks/TransformLine2D.list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[transform/TransformLine2D.java] |
195 changes: 195 additions & 0 deletions
195
templates/main/java/net/imglib2/algorithm/blocks/TransformLine2D.vm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
/* | ||
* #%L | ||
* ImgLib2: a general-purpose, multidimensional image processing library. | ||
* %% | ||
* Copyright (C) 2009 - 2024 Tobias Pietzsch, Stephan Preibisch, Stephan Saalfeld, | ||
* John Bogovic, Albert Cardona, Barry DeZonia, Christian Dietz, Jan Funke, | ||
* Aivar Grislis, Jonathan Hale, Grant Harris, Stefan Helfrich, Mark Hiner, | ||
* Martin Horn, Steffen Jaensch, Lee Kamentsky, Larry Lindsey, Melissa Linkert, | ||
* Mark Longair, Brian Northan, Nick Perry, Curtis Rueden, Johannes Schindelin, | ||
* Jean-Yves Tinevez and Michael Zinsmaier. | ||
* %% | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright notice, | ||
* this list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright notice, | ||
* this list of conditions and the following disclaimer in the documentation | ||
* and/or other materials provided with the distribution. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE | ||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
* #L% | ||
*/ | ||
package net.imglib2.algorithm.blocks.transform; | ||
|
||
import net.imglib2.type.PrimitiveType; | ||
import net.imglib2.util.Cast; | ||
|
||
#parse( "PixelTypes.vm" ) | ||
|
||
/** | ||
* Compute a destination X line for 2D. | ||
* <p> | ||
* An instance for a given input/output type (e.g. {@code float[]}) and {@link | ||
* Transform.Interpolation Interpolation} scheme can be obtained by {@link #of | ||
* TransformLine2D.of}. | ||
* <p> | ||
* A destination X line can then be computed by {@link #apply}, giving starting | ||
* position and X differential vector. | ||
* | ||
* @param <P> | ||
* input/output primitive array type (i.e., float[] or double[]) | ||
*/ | ||
@FunctionalInterface | ||
interface TransformLine2D< P > | ||
{ | ||
|
||
/** | ||
* Compute a destination X line. | ||
* | ||
* @param src | ||
* flattened source data | ||
* @param dest | ||
* flattened dest data | ||
* @param offset | ||
* offset (into {@code dest}) of the line to compute | ||
* @param length | ||
* length of the line to compute (in {@code dest}) | ||
* @param d0 | ||
* partial differential vector in X of the transform (X component) | ||
* @param d1 | ||
* partial differential vector in X of the transform (Y component) | ||
* @param ss0 | ||
* length of a source line (size_X) | ||
* @param sf0 | ||
* position of the first sample on the line (transformed into source) | ||
* @param sf1 | ||
* position of the first sample on the line (transformed into source) | ||
*/ | ||
void apply( P src, P dest, int offset, int length, | ||
float d0, float d1, | ||
int ss0, | ||
float sf0, float sf1 ); | ||
|
||
static < P > TransformLine2D< P > of( | ||
final Transform.Interpolation interpolation, | ||
final PrimitiveType primitiveType ) | ||
{ | ||
if ( interpolation == Transform.Interpolation.NLINEAR ) | ||
{ | ||
switch ( primitiveType ) | ||
{ | ||
case FLOAT: | ||
return Cast.unchecked( NLinear_float.INSTANCE ); | ||
case DOUBLE: | ||
return Cast.unchecked( NLinear_double.INSTANCE ); | ||
default: | ||
throw new IllegalArgumentException(); | ||
} | ||
} | ||
else // if ( interpolation = Transform.Interpolation.NEARESTNEIGHBOR ) | ||
{ | ||
switch ( primitiveType ) | ||
{ | ||
case BYTE: | ||
return Cast.unchecked( NearestNeighbor_byte.INSTANCE ); | ||
case SHORT: | ||
return Cast.unchecked( NearestNeighbor_short.INSTANCE ); | ||
case INT: | ||
return Cast.unchecked( NearestNeighbor_int.INSTANCE ); | ||
case LONG: | ||
return Cast.unchecked( NearestNeighbor_long.INSTANCE ); | ||
case FLOAT: | ||
return Cast.unchecked( NearestNeighbor_float.INSTANCE ); | ||
case DOUBLE: | ||
return Cast.unchecked( NearestNeighbor_double.INSTANCE ); | ||
default: | ||
throw new IllegalArgumentException(); | ||
} | ||
} | ||
} | ||
|
||
|
||
// ========== NLINEAR ===================================================== | ||
#set( $nlinear_primitive_types = ["float", "double"] ) | ||
#foreach( $t in $nlinear_primitive_types ) | ||
|
||
|
||
class NLinear_${t} implements TransformLine2D< ${t}[] > | ||
{ | ||
private NLinear_${t}() | ||
{ | ||
} | ||
|
||
static final NLinear_${t} INSTANCE = new NLinear_${t}(); | ||
|
||
@Override | ||
public void apply( final ${t}[] src, final ${t}[] dest, int offset, final int length, | ||
final float d0, final float d1, | ||
final int ss0, | ||
float sf0, float sf1 ) | ||
{ | ||
for ( int x = 0; x < length; ++x ) | ||
{ | ||
final int s0 = ( int ) sf0; | ||
final int s1 = ( int ) sf1; | ||
final float r0 = sf0 - s0; | ||
final float r1 = sf1 - s1; | ||
final int o = s1 * ss0 + s0; | ||
final ${t} a00 = src[ o ]; | ||
final ${t} a01 = src[ o + 1 ]; | ||
final ${t} a10 = src[ o + ss0 ]; | ||
final ${t} a11 = src[ o + ss0 + 1 ]; | ||
dest[ offset++ ] = a00 + r0 * ( a01 - a00 ) + r1 * ( a10 - a00 + r0 * ( a00 - a10 - a01 + a11 ) ); | ||
sf0 += d0; | ||
sf1 += d1; | ||
} | ||
} | ||
} | ||
#end | ||
|
||
|
||
// ========== NEARESTNEIGHBOR ============================================= | ||
#set( $nlinear_primitive_types = ["float", "double", "byte", "short", "int", "long"] ) | ||
#foreach( $t in $nlinear_primitive_types ) | ||
|
||
|
||
class NearestNeighbor_${t} implements TransformLine2D< ${t}[] > | ||
{ | ||
private NearestNeighbor_${t}() | ||
{ | ||
} | ||
|
||
static final NearestNeighbor_${t} INSTANCE = new NearestNeighbor_${t}(); | ||
|
||
@Override | ||
public void apply( final ${t}[] src, final ${t}[] dest, int offset, final int length, | ||
final float d0, final float d1, | ||
final int ss0, | ||
float sf0, float sf1 ) | ||
{ | ||
sf0 += .5f; | ||
sf1 += .5f; | ||
for ( int x = 0; x < length; ++x ) | ||
{ | ||
final int s0 = ( int ) sf0; | ||
final int s1 = ( int ) sf1; | ||
dest[ offset++ ] = src[ s1 * ss0 + s0 ]; | ||
sf0 += d0; | ||
sf1 += d1; | ||
} | ||
} | ||
} | ||
#end | ||
} |
1 change: 1 addition & 0 deletions
1
templates/main/java/net/imglib2/algorithm/blocks/TransformLine3D.list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[transform/TransformLine3D.java] |
Oops, something went wrong.