Has anyone had any success making a region specific heatmap? I don't understand the region id hierarchy but am trying to use the lbl.labelAtLevel function to isolate the dorsomedial nucleus of the hypothalamus. Right now I'm using this bit of code
for l in labelids:
if not lbl.labelAtLevel(l, 3) == 688:
outside = numpy.logical_or(outside, label == l);
Where 688 was the id in the region count csv output, but I don't think thats correct
Any help would be much appreciated.
Has anyone had any success making a region specific heatmap? I don't understand the region id hierarchy but am trying to use the lbl.labelAtLevel function to isolate the dorsomedial nucleus of the hypothalamus. Right now I'm using this bit of code
for l in labelids:
if not lbl.labelAtLevel(l, 3) == 688:
outside = numpy.logical_or(outside, label == l);
Where 688 was the id in the region count csv output, but I don't think thats correct
Any help would be much appreciated.