allenCCF icon indicating copy to clipboard operation
allenCCF copied to clipboard

Increasing the number of Probes past 11

Open slsuarez-gh opened this issue 5 years ago • 1 comments

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?

slsuarez-gh avatar May 10 '20 00:05 slsuarez-gh

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.

philshams avatar Sep 15 '20 11:09 philshams