Re: 12/16 bit composite: setMinAndMax(), macro, keep values
Posted by Frank Sprenger on Mar 21, 2011; 2:45pm
URL: http://imagej.273.s1.nabble.com/12-16-bit-composite-setMinAndMax-macro-keep-values-tp3685335p3685336.html
Dear Guenther,
for adjusting the individual channels use Hyperstacks and Channel tools, in macro language this would be
Stack.setChannel(1);
for example:
run("Stack to Hyperstack...", "order=xyczt(default) channels=3 slices=1 frames=30 display=Color");
Stack.setChannel(1);
run("Enhance Contrast", "saturated=0.35");
Stack.setChannel(2);
run("Enhance Contrast", "saturated=0.35");
Stack.setChannel(3);
run("Enhance Contrast", "saturated=0.35");