allenCCF
allenCCF copied to clipboard
Increasing the number of Probes past 11
I have a group of histology slices where I need to label 18 separate probe tracts. However, when I attempt to label probes past probe #11, the software will not respond to the add new probe command. Is there any known work around to increase the number of allowed probes?
This is controlled in lines 37-8 of AtlasTransformBrowser.m. You can add additional probes by adding to the list of probe colors:
ud.ProbeColors = [1 1 1; 1 .75 0; .3 1 1; .4 .6 .2; 1 .35 .65; .7 .7 1; .65 .4 .25; .7 .95 .3; .7 0 0; .5 0 .6; 1 .6 0];
ud.ProbeColor = {'white','gold','turquoise','fern','bubble gum','overcast sky','rawhide', 'green apple','red','purple','orange'};
For example adding 0.5 0.5 0.5 and 'gray' to the end of those lists.