// This macro demonstrates how to access the // particle analyzer's "Summary" table. run("T1 Head (2.4M, 16-bits)"); setAutoThreshold("Default dark"); run("Analyze Particles...", "summarize stack"); print("Title: "+Table.title); print("Table size: "+Table.size); print("'Count' at index 8 (row 9): "+Table.get("Count",8)); print("'%Area' at index 50 (row 51): "+Table.get("%Area",50)); wait(1000); close(Table.title);