editing results

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

editing results

Glen MacDonald-2
Hi,
is it possible to delete lines in the results table from a macro? Or  
to filter particle counting results by Solidity, as with Circularity?

Thanks,
Glen

Glen MacDonald
Core for Communication Research
Virginia Merrill Bloedel Hearing Research Center
Box 357923
University of Washington
Seattle, WA 98195-7923  USA
(206) 616-4156
[hidden email]

******************************************************************************
The box said "Requires WindowsXP or better", so I bought a Macintosh.
******************************************************************************
Reply | Threaded
Open this post in threaded view
|

Re: editing results

karo03
I got from Ben Tupper some time ago a piece of code for that purpose:
File name TableHandler.java

import ij.*;
import ij.process.*;
import ij.gui.*;
import ij.measure.*;
import ij.plugin.*;
import ij.plugin.filter.*;

public class TableHandler {

        public static void deleteRow(String row){
                Integer iRow = new Integer(row);
                ResultsTable rt = Analyzer.getResultsTable();
                rt.deleteRow(iRow.intValue());
                rt.show("Results");
        }

}

The macro call is than:

call("TableHandler.deleteRow", rownr);

Regards
Karsten


Am 18.07.2009 um 04:39 schrieb Glen MacDonald:

> Hi,
> is it possible to delete lines in the results table from a macro? Or  
> to filter particle counting results by Solidity, as with Circularity?
>
> Thanks,
> Glen
>
> Glen MacDonald
> Core for Communication Research
> Virginia Merrill Bloedel Hearing Research Center
> Box 357923
> University of Washington
> Seattle, WA 98195-7923  USA
> (206) 616-4156
> [hidden email]
>
> ******************************************************************************
> The box said "Requires WindowsXP or better", so I bought a Macintosh.
> ******************************************************************************

Karsten
[hidden email]