Login  Register

Read ImageJ Results Table From Plugin

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Read ImageJ Results Table From Plugin

ColinWhite
13 posts
Hi,

I'm wondering if it's possible to read the ImageJ results table from a plugin, and if so how? I want to use the "Measure" menu command and then use some of that data in my plugin.

Thanks,
Colin
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Read ImageJ Results Table From Plugin

BenTupper
122 posts
Hi,

There is a static method just for your purpose.

ResultsTable rt = ResultsTable.getResultsTable();

From there you can have lots of methods for accessing the elements of the table.  

Cheers,
Ben


On Jul 20, 2011, at 9:26 AM, ColinWhite wrote:

> Hi,
>
> I'm wondering if it's possible to read the ImageJ results table from a
> plugin, and if so how? I want to use the "Measure" menu command and then use
> some of that data in my plugin.
>
> Thanks,
> Colin
>
> --
> View this message in context: http://imagej.588099.n2.nabble.com/Read-ImageJ-Results-Table-From-Plugin-tp6602648p6602648.html
> Sent from the ImageJ mailing list archive at Nabble.com.
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: Read ImageJ Results Table From Plugin

ColinWhite
13 posts
In reply to this post by ColinWhite
Great. Thanks!