Skip to content

Commit

Permalink
add TODO and silence error
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Sep 30, 2024
1 parent ff8a30b commit 4a1d917
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@
import net.imglib2.type.numeric.real.FloatType;
import net.imglib2.util.Cast;


/*
* TODO
* TODO
* TODO
* TODO
* TODO REorganize and adapt to the new architecture
*/
public class PythonTransformation extends AbstractTensorTransformation
{
public static final String NAME = "python";
Expand Down Expand Up @@ -328,7 +336,7 @@ public < R extends RealType< R > & NativeType< R > > Tensor<FloatType> apply( fi
return Tensor.build("output", axes, outImg);
}

public void applyInPlace( final Tensor< FloatType > input )
public < R extends RealType< R > & NativeType< R > > void applyInPlace( final Tensor< R > input )
{
}

Expand Down

0 comments on commit 4a1d917

Please sign in to comment.