Posted by
Julian Cooper on
Apr 30, 2011; 10:17am
URL: http://imagej.273.s1.nabble.com/Problem-with-Untilt-Stacks-plugin-tp3684792p3684794.html
Hi All,
Johannes is absolutely correct about the version problem.
I've updated the Untilt Stack plugin to take account of this and sent the
new source and class files to Wayne to update the website.
Kind regards,
Julian
Julian Cooper
Consultant Orthopaedic Trauma Surgeon
Birmingham
UK
ImageJ 1.45f; Windows 7 Ultimate 64bit; 4GB RAM (3GB allocated to ImageJ);
Intel Core i5 processor; Java 64 bit 1.6.0_20
-----Original Message-----
From: ImageJ Interest Group [mailto:
[hidden email]] On Behalf Of
Johannes Schindelin
Sent: 27 April 2011 16:14
To:
[hidden email]
Subject: Re: Problem with "Untilt Stacks" plugin
Hi,
On Wed, 27 Apr 2011, JOEL B. SHEFFIELD wrote:
> java.lang.NoSuchMethodError: imagescience.transform.Affine.
> run(Limagescience/image/Image;[[DIZZ)Limagescience/image/Image;
The current imagescience's Affine's run() method has the following
signature:
Image run(final Image image, final Transform transform, final int scheme,
final boolean fit, final boolean antialias);
while the Untilt plugin obviously expects:
Image run(final Image image, final double[][] transform, final int scheme,
final boolean fit, final boolean antialias);
It is a classic version problem.
If you have the sources, you might fix this by wrapping the transform array
into a "new Transform(transform)" when passing it to the run() method.
We do not have the Untilt plugin in Fiji, otherwise the maintainer would
have taken care of fixing it.
Ciao,
Johannes