Login  Register

Re: Modify (or create) results table

Posted by Cyril Turiès on Mar 10, 2015; 12:56pm
URL: http://imagej.273.s1.nabble.com/Modify-or-create-results-table-tp5011481p5011935.html

Hello Mark,

I think this is possible but you will have to build your own summary table.
There is no ready-to-use solution this time as it depends on your image analysis steps and what you have in your Results table.

Here is a good example of macro and functions to build custom summary stat
http://rsb.info.nih.gov/ij/macros/CustomTabStatFromResults.txt

In the middle of this document there is a section: // --------------- tab functions ---------------//
you can add the standard deviation formula you need in the "makeStatFromResults" function and keep it in a variable that you add in the TabWindow function.


One another solution (the easier one) is to get the result calculated with the command:
run("Summarize");
But if you need it in your summary table you still have to make a custom one.


First problem if you analyse many images you have a lot of results from different images and you cannot run a standard deviation calculation on the whole results.

Maybe there is a way to get this value from statistics but I don't know how.

Cyril