-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapNeuron.asv
111 lines (105 loc) · 4.18 KB
/
mapNeuron.asv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
function mapNeuron(idString,varargin)
if nargin == 0
fprintf('\nNo neuron Id provided showing AA0100 as example');
neuronId = 'AA0100';
type = 'axon';
depthColor = true;
end
if nargin==1
type = 'axon';
depthColor = true;
endedit get
% %% Input Parameters
% neuronId = 'AA0100';
% type = 'axon';
%% Parse input.
p = inputParser;
p.addRequired('idString',@(x) ischar(x) && length(x)==6);
p.addParameter('Type','axon',@(x) ischar(x));
p.addParameter('Color','depth',@(x) ischar(x) ||( ismatrix(x) && );
p.parse(idString,varargin{:});
Inputs = p.Results;
Settings.VoxelSize = [10,10,10];
%% Load neuron from database.
fprintf('\nLoading neuron: %s',Inputs.idString);
neuron = getNeuronfromIdString(Inputs.idString);
%% Load pre-generated flat map.
fprintf('\nLoading Laplacian Info');
[cFolder,~,~] = fileparts(which('mapNeuron'));
load(fullfile(cFolder,'precalculated','lap10.mat')); % load lap and metalap
lap(lap==0)=NaN('single');
Param = load(fullfile(cFolder,'precalculated','calc_param.mat')); % load lap and metalap
%% Load precalculated anatomy map.
load(fullfile(cFolder,'precalculated','map.mat')); % load resIm and cMap
%% Points to Pix. (LAPLACIAN DIM ORDER Y,Z,X)
% transform matrix.
tMat = eye(4,4);
for iDim=1:3
tMat(iDim,iDim) = 1/Settings.VoxelSize(iDim);
end
swc = [[neuron.(type).sampleNumber]' [neuron.(type).structureIdValue]' [neuron.(type).y]' [neuron.(type).z]' [neuron.(type).x]' ones(size(neuron.axon,1),1) [neuron.(type).parentNumber]'];
% get indices in laplacian matrix.
pixPoints = round([swc(:,3:5),zeros(size(swc,1),1)]*tMat);
pixPoints = pixPoints(:,1:3);
indPix = sub2ind(size(lap),pixPoints(:,1),pixPoints(:,2),pixPoints(:,3));
% Filter for nodes on cortex.
indHit = find(~isnan(lap(indPix)));
swc = swc(indHit,:);
indPix = indPix(indHit,:);
pixPoints = pixPoints(indHit,:);
%% Process per hemisphere for symmetry.
swcHemi = [];
swcHemi.left = [];
swcHemi.right = [];
for iHemi = {'left','right'}
% Select nodes on hemisphere.
switch iHemi{:}
case 'left'
nodeList = find(swc(:,5)>5695);
case 'right'
nodeList = find(swc(:,5)<=5695);
end
%% Point to flatmap
fprintf('\nTransforming points for %s hemisphere',iHemi{:});
for iNode = 1:size(nodeList,1)
cNode = nodeList(iNode);
switch iHemi{:}
case 'left'
[ xr, yr,zr ] = transformAllenPix2Flat( pixPoints(cNode,1), pixPoints(cNode,2), size(lap,3)-pixPoints(cNode,3),... % you do mimus the total X lenngth because the direction of the dimenions is reversed (low is left hemisphere and high is right hemisphere)
Param.coeff1, Param.coeff2, Param.points3d, lap);
case 'right'
[ xr, yr,zr ] = transformAllenPix2Flat( pixPoints(cNode,1), pixPoints(cNode,2), pixPoints(cNode,3),...
Param.coeff1, Param.coeff2, Param.points3d, lap);
xr = (-xr );
end
swcHemi.(iHemi{:}) = [ swcHemi.(iHemi{:}) ; swc(cNode,1:2) xr, yr,zr, swc(cNode,6:7) ];
end
%% reformat swc info.
swcHemi.(iHemi{:})(:,8) = swcHemi.(iHemi{:})(:,1); %store original node Id.
swcHemi.(iHemi{:})(:,1) = [1:size(swcHemi.(iHemi{:}),1)]';
for iNode = 1:size(swcHemi.(iHemi{:}),1)
ind = find(swcHemi.(iHemi{:})(:,8) == swcHemi.(iHemi{:})(iNode,7));
if ~isempty(ind)
swcHemi.(iHemi{:})(iNode,7) = swcHemi.(iHemi{:})(ind,1);
else
swcHemi.(iHemi{:})(iNode,7) =-1;
end
end
end
%% plot.
hFig = figure;
hAx = axes;
hAx.DataAspectRatio = [1,1,1];
imshow(resIm,R,[1,730],'ColorMap',cMap);hold on;
hAx.YDir = 'normal';
depthMap = jet(10001);
if depthColor
scatter(swcHemi.left(:,3),swcHemi.left(:,4),10,depthMap(uint16(swcHemi.left(:,5)+5000)+1,:),'filled');
scatter(swcHemi.right(:,3),swcHemi.right(:,4),10,depthMap(uint16(swcHemi.right(:,5)+5000)+1,:),'filled');
else
scatter(swcHemi.left(:,3),swcHemi.left(:,4),10,'white','filled');
scatter(swcHemi.right(:,3),swcHemi.right(:,4),10,'white','filled');
end
xlabel('Left-Right axis');
ylabel('Posterior-Anterior axis');
fprintf('\nDone!\n');