Login  Register

Tiny bug in StackProfilePlot

Posted by Dotan Kamber on Dec 10, 2009; 10:26am
URL: http://imagej.273.s1.nabble.com/Tiny-bug-in-StackProfilePlot-tp3690166.html

Hi there
StackProfilePlot.txt generates profile plots of all but the last image in a stack.
To fix -
    for (i=1; i<n; i++) {

should be
    for (i=1; i<=n; i++) {
Regards
Dotan