Read ImageJ Results Table From Plugin

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

Read ImageJ Results Table From Plugin

ColinWhite
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
|

Re: Read ImageJ Results Table From Plugin

BenTupper
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
|

Re: Read ImageJ Results Table From Plugin

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