-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cart2Pixel.m
210 lines (189 loc) · 5.23 KB
/
Cart2Pixel.m
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
function [M,xp,yp,A,B,Base] = Cart2Pixel(Q,A,B)
% [M,xp,yp,A,B,Base] = Cart2Pixel(Q,A,B)
%
% Q.data should be in no_of_genes x no_of_samples format
%
% Q.Method
% n=10;
% x = randn(n,1);
% y = randn(n,1);
% Method = 1) kpca for kernel pca
% or 2) tSNE for t-Distributed Stochastic Neighbor Embedding
% or 3) pca for principal component analysis
%
% Snowfall algorithm (if using then define):
% SnowFall_A and SnowFall_B
%
% if Q.z =1 then do not perform ConvPixel function. Secondly send 'z'
% values instead of M.
% Q.z = 0 or Q.z=1 or Q.z can be undefined (does not exist)
% Note: z values are independent of snow-fall algorithm as z values are
% available only in Cartesian coordinates system and snow-fall works only
% in pixel-coordinates system
%
% Q.ConvPixel = 1; perform ConvPixel operation otherwise don't
%
% Q.Max_Px_Size is max(A,B)
if any(strcmp('data',fieldnames(Q)))~=1
disp('no data provided')
end
if any(strcmp('Method',fieldnames(Q)))~=1
Q.Method=['tSNE'];
end
if any(strcmp('Max_Px_Size',fieldnames(Q)))~=1
Q.Max_Px_Size=30;
end
if any(strcmp('Dist',fieldnames(Q)))~=1
Q.Dist='cosine';
end
if any(strcmp('SnowFall_A',fieldnames(Q)))~=1
Q.SnowFall_A=120;
end
if any(strcmp('SnowFall_B',fieldnames(Q)))~=1
Q.SnowFall_B=120;
end
if any(strcmp('SnowFall',fieldnames(Q)))~=1
Q.SnowFall=1; % if 0 then SnowFall Compression will not be active!
end
if any(strcmp('z',fieldnames(Q)))~=1
Q.z=0; % if 0 then 'z' values will not be sent!
end
if any(strcmp('ConvPixel',fieldnames(Q)))~=1
Q.ConvPixel=0; % if 0 then 'z' values will not be sent!
end
if exist('A')==1
A=A-1;
end
if exist('B')==1
B=B-1;
end
if strcmp(lower(Q.Method),'kpca')==1
disp('kpca is used');
DIST=distanceMatrix(Q.data);
DIST(DIST==0)=inf;
DIST=min(DIST);
para=5*mean(DIST);
[Y, ~]=kPCA(Q.data,2,'gaussian',para);
elseif strcmp(lower(Q.Method),'pca')==1
disp('pca is used');
Y=PCA(Q.data,2);
elseif strcmp(lower(Q.Method),'umap')==1
disp('umap is used');
Y=umap_Rmatlab(Q.data); % R script
%Y=umap_matlab(Q.data); %python script
elseif strcmp(lower(Q.Method),'lda')==1
disp('lda is used');
Y=LDAproj(Q.data,Q.Labels);
else
if size(Q.data,1)<5000
disp('tSNE with exact algorithm is used');
fprintf('Distance: %s\n',Q.Dist);
rng default
Y=tsne(Q.data,'Algorithm','exact','Distance',Q.Dist);
else
disp('tSNE with burneshut algorithm is used');
fprintf('Distance: %s\n',Q.Dist);
rng default
Y=tsne(Q.data,'Algorithm','barneshut','Distance',Q.Dist);
end
end
x=Y(:,1);
y=Y(:,2);
[n,no_samples]=size(Q.data);
clear Y DIST para
% should have a nearly square bounding rectangle
[xrect,yrect] = minboundrect(x,y);
figure
hold on;
plot(xrect,yrect,'k-');
plot(x,y,'o');
%gradient (m) of a line y=mx+c
grad = (yrect(2)-yrect(1))/(xrect(2)-xrect(1));
theta = atan(grad);
%Rotation matrix
%theta=180-theta
R=[cos(theta) sin(theta);-sin(theta) cos(theta)];
% rotated rectangle
zrect = R*[xrect';yrect'];
% rotated data
z = R*[x';y'];
plot(z(1,:),z(2,:),'o');
plot(zrect(1,:),zrect(2,:),'r-');
axis square
% % log transform ########
% zrect=zrect'; z=z';
% z=z-min(z);
% z=z./max(z);
% z=log10(z+1);
% z=z';
% zrect=zrect-min(zrect);
% zrect=zrect./max(zrect);
% zrect=log10(zrect+1);
% zrect=zrect';
% figure; hold on;
% plot(z(1,:),z(2,:),'o');
% plot(zrect(1,:),zrect(2,:),'r-');
% axis square
% % ######################
% Find nearest points
%tic
min_dist = Inf;
min_p1 = 0;
min_p2 = 0;
for p1 = 1:n
for p2 = p1+1:n
d = (z(1,p1)-z(1,p2))^2+(z(2,p1)-z(2,p2))^2;
if d < min_dist && p1 ~= p2 && d>0
min_p1 = p1;
min_p2 = p2;
min_dist = d;
end
end
end
%Time=toc
plot([z(1,min_p1),z(1,min_p2)],[z(2,min_p1),z(2,min_p2)],'k.');
% Find distance between two nearest points
dmin = norm(z(:,min_p1)-z(:,min_p2));
% Find coordinates of pixel frame (A,B)
rec_x_axis = abs(zrect(1,1)-zrect(1,2));
rec_y_axis = abs(zrect(2,2)-zrect(2,3));
% if dmin is sqrt(2)del, then what is A and B in terms of del (where del is
% one pixel length)
if exist('A')==0 & exist('B')==0
Precision_old=sqrt(2);
A = ceil(rec_x_axis*Precision_old/dmin);
B = ceil(rec_y_axis*Precision_old/dmin);
%Max_Px_Size = 50;%300;
if max([A,B]) > Q.Max_Px_Size
Precision = Precision_old*Q.Max_Px_Size/max([A,B]);
A = ceil(rec_x_axis*Precision/dmin);
B = ceil(rec_y_axis*Precision/dmin);
end
end
%A=25; B=25;
% Transform from cartesian coordinates to pixels
xp = round(1+(A*(z(1,:)-min(z(1,:)))/(max(z(1,:))-min(z(1,:)))));
yp = round(1+(-B)*(z(2,:)-max(z(2,:)))/(max(z(2,:))-min(z(2,:))));
A=max(xp);
B=max(yp);
if Q.z~=1
if Q.SnowFall==1
disp('SnowFall Compression Algorithm has been used');
%Snow-Fall Compression algorithm
FIG=0;
[xp,yp,A,B]=SnowFall(xp,yp,FIG,Q.SnowFall_A,Q.SnowFall_B); % maximum fram size should not exceed 200 x 200
%###############################
end
Base=1;%min(min(Q.data)) - (max(max(Q.data))-min(min(Q.data)))*0.03;%mean(mean(Q.data));%
FIG=0; % if FIG=1 then plots will appear
%S=zeros(A,B);
if Q.ConvPixel==1
for j=1:no_samples
M(:,:,:,j) = ConvPixel(Q.data(:,j),xp,yp,A,B,Base,FIG);
end
else
M=[];
end
else
M=z';
end