Problem with BatchProcesser plugin

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

Problem with BatchProcesser plugin

6:1135
Hi,
I recently have an error when I run Process/Batch/Macro :

-Plugin or class not found: "ij.plugin.BatchProcesser"
(java.lang.ClassNotFoundException: ij.plugin.BatchProcesser)

I solved the problem with downgrade imageJ version to 1.46 (instead of 1.47s)

Has anybody encountered this issue ?

regards

Gilles
Reply | Threaded
Open this post in threaded view
|

Re: Problem with BatchProcesser plugin

dscho
Hi 6:1135 (or Gilles?),

On Fri, 7 Jun 2013, 6:1135 wrote:

> I recently have an error when I run Process/Batch/Macro :
>
> -Plugin or class not found: "ij.plugin.BatchProcesser"
> (java.lang.ClassNotFoundException: ij.plugin.BatchProcesser)
>
> I solved the problem with downgrade imageJ version to 1.46 (instead of
> 1.47s)

The class ij.plugin.BatchProcesser was renamed to BatchProcessor in
version 1.47r. If you have the source code for your plugin, you could
rename the reference to that class, otherwise you'd have to ask Wayne to
put back a backwards-compatibility class. That should be as simple as

        @Deprecated
        public class BatchProcesser extends BatchProcessor {}

in ij/plugin/BatchProcesser.java.

Ciao,
Johannes

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Problem with BatchProcesser plugin

Rasband, Wayne (NIH/NIMH) [E]
In reply to this post by 6:1135
On Jun 7, 2013, at 6:51 AM, 6:1135 wrote:

> Hi,
> I recently have an error when I run Process/Batch/Macro :
>
> -Plugin or class not found: "ij.plugin.BatchProcesser"
> (java.lang.ClassNotFoundException: ij.plugin.BatchProcesser)
>
> I solved the problem with downgrade imageJ version to 1.46 (instead of
> 1.47s)
>
> Has anybody encountered this issue ?

This regression is fixed in the ImageJ 1.47t daily build. You can upgrade by using the Help>Update ImageJ command and selecting "daily build" from the drop down menu.

-wayne

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Problem with BatchProcesser plugin

6:1135
Hi,
everything is back to normal, thank you all

Gilles