[OpenSPIM] SPIMAcquisition plugin installation fails
Johannes Schindelin
johannes.schindelin at gmx.de
Mon Feb 9 15:26:20 CST 2015
Hi Carsten,
On 2015-02-09 16:29, Carsten Wolff wrote:
> I have a problem installing the SPIM acquisition plugin as decribed in
> 'https://github.com/openspim/SPIMAcquisition' and I need help to
> interpret the error messages.
>
> [...]
>
> 2 errors
> [...]
> [ERROR] C:\Program
> Files\Micro-Manager-1.4.1.9_nightlybuild\plugins\Micro-Manage
> r\src\main\java\spim\FitHypersphere.java:20: error: reference not found
> [ERROR] * The principle is described in {@link
> fiji.util.Circle_Fitter}.
> [ERROR] ^
> [...]
> [ERROR] C:\Program
> Files\Micro-Manager-1.4.1.9_nightlybuild\plugins\Micro-Manage
> r\src\main\java\spim\progacq\IndividualImagesHandler.java:18: error:
> @param name
> not found
> [ERROR] * @param t whether or not to include time in filename
> [ERROR] ^
It looks like you are using a newer Java version than I do, whose
javadoc is stricter than Java 6'.
The first error should be fixed by replacing the "{@link
fiji.util.Circle_Fitter}" with "Fiji_Plugin's Circle_Fitter class"
(Fiji_Plugins is no longer a dependency, hence the javadoc for that
class is not found, meaning that the link is invalid).
The second issue would be fixed by replacing "@param t whether or
not to include time in filename" by "@param xyztt which axes to
include in the filename" – the "@param" construct tries to explain a
parameter, and there is no "t", but a yet unexplained "xyztt" parameter,
as you can see here:
https://github.com/openspim/SPIMAcquisition/blob/d0276596c91b5764b21b11146a60e248f5f74506/src/main/java/spim/progacq/IndividualImagesHandler.java#L13-L22
If that fixes things for you, it would be very nice if you could make a
Pull Request as described here:
https://help.github.com/articles/creating-a-pull-request/
Ciao,
Johannes
More information about the OpenSPIM
mailing list