NOTICE! This is a static HTML version of a legacy Fiji BugZilla bug.

The Fiji project now uses GitHub Issues for issue tracking.

Please file all new issues there.

Bug 207 - Problem when analyzing particles within a ROI on a stack slice
Problem when analyzing particles within a ROI on a stack slice
Status: RESOLVED FIXED
Product: Fiji
Classification: Unclassified
Component: ImageJ1
unspecified
Macintosh All
: P2 normal
Assigned To: ImageJ Bugs Mailing List
Depends on:
Blocks:
 
Reported: 2010-08-06 14:24 CDT by Thomas Julou
Modified: 2010-08-06 20:18 CDT
0 users

See Also:

Description Thomas Julou 2010-08-06 14:24:43 CDT
Hello,

This bug appears in ImageJ between version 1.43u et 1.44d (I didn't use the intermediate version...) It now affects Fiji as well so you may want to fix it. I experienced it on mac os 10.5.8 (Fiji 1.44e, java 1.5.0 64bits) and Win XP (Fiji 1.44e, java 1.6.0 32bits).

When using "analyze particles" with an active ROI on a stack slice, if "display labels" has been selected in "select measurements", I get plenty of NaN lines...
This does not happen has soon as display label is unchecked, or if a simple image is used (not a stack).

Below is an example. Thank you in advance for your help,

Thomas



// OK on one frame
run("Blobs (25K)");
setAutoThreshold("Default");
run("Set Measurements...", "area redirect=None decimal=3");
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing add");

setThreshold(215, 255);
run("Set Measurements...", "area mean standard modal min centroid center fit shape median display redirect=None decimal=3");
roiManager("Select", 22);
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing display clear");


// This produces NaN lines as soon as label is displayed
run("Blobs (25K)");
run("Duplicate...", "title=blobs-1.gif");
run("Images to Stack", "name=Stack title=[] use");
setAutoThreshold("Default");
run("Set Measurements...", "area redirect=None decimal=3");
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing add slice");
setThreshold(215, 255);

// (ok without selecting label)
run("Set Measurements...", "area mean standard modal min centroid center fit shape median redirect=None decimal=3");
roiManager("Select", 22);
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing display clear slice");

// (here is the bug)
run("Set Measurements...", "area mean standard modal min centroid center fit shape median display redirect=None decimal=3");
roiManager("Select", 22);
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing display clear slice");
Comment 1 Wayne Rasband 2010-08-06 20:18:30 CDT
This bug is fixed in ImageJ 1.44f3.

-wayne