STD_DEV measurement missing
Posted by Cspr on
URL: http://imagej.273.s1.nabble.com/STD-DEV-measurement-missing-tp3689136.html
After running ParticleAnalyzer, I clear the Result window using
IJ.run("Clear results...","");
select another image using.
IJ.selectWindow(impAry[1].getTitle());
and run the measurement command there as well calling measure. In total the code is:
IJ.run("Clear Results", "");
IJ.selectWindow(impAry[1].getTitle());
rm.setEditMode(impAry[1], true);
rm.runCommand("Show All");
rm.runCommand("Measure");
However there is a problem. The result windows originally contained the columns Area, Mean, Std_dev, Min, Max - but after clearing the window and calling measure I only get Area, Mean and Min, Max as measurements. Where did Std_Dev go? Is there something missing?
Thanks