ImageJDev project update

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

ImageJDev project update

ctrueden
Hi everyone,

For those who haven't already heard, ImageJDev is a project to create the
next generation version of ImageJ.

I gave a talk at the ImageJ 2010 conference describing the project; for
those who missed it, the slides are online with speaker notes at:
   http://imagejdev.org/2010/10/29/imagejdev-presentation-imagejconf

We also recently updated the ImageJDev web site (http://imagejdev.org/) to
reflect our latest work (http://imagejdev.org/current-status), describe the
software architecture as it develops (http://imagejdev.org/design), and
more.

We have been making steady progress, but the project is still under heavy
development, with nothing ready for end users to try yet. We plan to release
an alpha version next month, a beta next summer, and a stable release next
fall.

For those interested in participating in the project's development, we
suggest signing up for the ImageJX mailing list for general future
directions and software architecture discussions about ImageJ, and/or the
ImageJ-devel list for day-to-day discussion of the ImageJDev project—see
http://imagejdev.org/mailing-lists for more details.

Happy holidays!

-Curtis
Reply | Threaded
Open this post in threaded view
|

Re: ImageJDev project update

ctrueden
Hi Albert,

Thanks for the update. It's missing one key explanation: how to launch it.
>

We wanted to have an alpha version of all the functionality pulled together
by the holidays, but unfortunately it is not quite ready. I assure you that
running ImageJ2 in its current form will be highly unimpressive. That said,
if you are set on trying it, the easiest way at the moment is:

$ mvn
$ cd imagej
$ ./run

This will invoke the Maven command to copy all the dependent JAR files to a
common folder and launch the program with the appropriate classpath.

I will send another update to the lists before the end of January, and
hopefully by then we will have an alpha version ready as well.

Regards,
Curtis

On Thu, Dec 30, 2010 at 2:31 PM, Albert Cardona <[hidden email]> wrote:

> Curtis,
>
> Thanks for the update. It's missing one key explanation: how to launch it.
>
> I managed to figure out the following:
>
> $ java -classpath $(find -name "*.jar" -printf "%h/%f:").
> imagej.gui.MainFrame
>
> or:
>
> $ java -classpath $(find -name "*.jar" -printf "%h/%f:"). ijx.ImageJX
>
> ... but they are both very broken.
>
> Is there any way to launch the program?
>
> With maven, I get:
>
> $ mvn -e exec:java -Dexec.mainClass="ijx.ImageJX"
>
> org.apache.maven.lifecycle.LifecycleExecutionException: An exception
> occured while executing the Java class. ijx.ImageJX
> ...
> Caused by: java.lang.ClassNotFoundException: ijx.ImageJX
>        at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
>        at java.security.AccessController.doPrivileged(Native Method)
>        at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
>        at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
>        at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
>        at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:284)
>        at java.lang.Thread.run(Thread.java:619)
>
>
> Surely there is an incantation to run ImageJ 2.0 ?
>
>
> Albert
> --
> http://albert.rierol.net
>
> --
> You received this message because you are subscribed to the Google Groups
> "ImageJX" group.
> To post to this group, send email to [hidden email].
> To unsubscribe from this group, send email to
> [hidden email]<imagejx%[hidden email]>
> .
> For more options, visit this group at
> http://groups.google.com/group/imagejx?hl=en.
>
>