forked from rhodricusack/diffeomorph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
diffeomorphic_movie_warpshift.m
189 lines (148 loc) · 5.93 KB
/
diffeomorphic_movie_warpshift.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
function diffeomorphic_movie_warpshift()
%===========================================================================
% Create diffeowarped movies.
% Applies a gradually drifting warp field to each frame, achieved by the
% phase of the components taking a random walk.
% Will operate on all .mov files in the directory defined by "moviepath"
%Please reference: Stojanoski, B., & Cusack, R (2013). Time to wave goodbye to phase scrambling – creating unrecognizable control stimuli using a diffeomorphic transform. Abstract Vision Science Society
% =======================
% Rhodri Cusack and Bobby Stojanoski July 2013
% Rhodri Cusack 2020-10-12: adapted to allow gently drifting warp fields - phases take random walk
maxdistortion=60; % changes max amount of distortion
nsteps=20; % number of steps
ncomp=10;
%imsz= 1000; % size of output images (bigger or equal to 2 x input image)
phasedrift=pi/8; % phase drift by randn(0,phasedrift) each second
moviepath='/home/rhodricusack/diffeomorph/towarp';
outvidpath='/home/rhodricusack/diffeomorph/warped';
% Read in .mov
fns=dir(fullfile(moviepath,'*.mov'));
figure(10);
imsz=1280+4*maxdistortion;
% Generate disortion field for all frames - try keeping it fixed to start
% Only need one not 3 distortion fields, as no longer need the
% continuous circle
tic
[cx, cy, a, b, ph]=getdiffeo(imsz,maxdistortion,nsteps,ncomp);
[cx, cy]=postprocess_diffeo(imsz,cx,cy);
% In one second we'll be here
% Alter phase
ph=ph+phasedrift*randn(ncomp,ncomp,4);
[nextcx, nextcy, a, b, ph]=getdiffeo(imsz,maxdistortion,nsteps,ncomp,a,b,ph);
[nextcx, nextcy]=postprocess_diffeo(imsz,nextcx,nextcy);
fprintf('Time to create distortion field: %f s\n',toc)
for i=1:length(fns) %This is the number of objects in the directory
M=VideoReader(fullfile(moviepath,fns(i).name));
z=0;
v=VideoWriter((fullfile(outvidpath,sprintf('Vid_%02d',i))));
outframenum=0;
v.FrameRate=M.FrameRate;
open(v);
oldsecs=0;
while M.hasFrame() %to pass over
z=z+1;
outframenum=outframenum+1;
P=M.readFrame();
P=P(:,:,1:3);
Psz=size(P);
%moved below chunk from outside of the loop
if (~exist('Xn','var'))
end;
Im=uint8(ones(imsz,imsz,3)*256); %128 for grey bckground and 256 for white
% Pad image if necessary
x1=round((imsz-Psz(1))/2);
y1=round((imsz-Psz(2))/2);
% Add fourth plane if necessary
if (Psz(3)==4)
Im(:,:,4)=0;
end;
Im((x1+1):(x1+Psz(1)),(y1+1):(y1+Psz(2)),:)=P;
% Pad with mirrored extensions of image
Im(1:x1,(y1+1):(y1+Psz(2)),:)=P(x1:-1:1,:,:);
Im(x1+Psz(1)+1:end,(y1+1):(y1+Psz(2)),:)=P(end:-1:end-x1+1,:,:);
Im(:,1:y1,:)=Im(:,(y1+1+y1):-1:(y1+2),:);
Im(:,y1+Psz(2)+1:end,:)=Im(:,(y1+Psz(2):-1:Psz(2)+1),:);
% Interpolate between now and next distortion field in 1 second
f=z/v.FrameRate;
f=f-floor(f);
cyi=(1-f)*cy + f*nextcy;
cxi=(1-f)*cx + f*nextcx;
% Start off with undisorted image
interpIm=Im;
for j=1:nsteps %This is the number of steps - Total number of warps is nsteps * quadrant
interpIm(:,:,1)=interp2(double(interpIm(:,:,1)),cyi,cxi);
interpIm(:,:,2)=interp2(double(interpIm(:,:,2)),cyi,cxi);
interpIm(:,:,3)=interp2(double(interpIm(:,:,3)),cyi,cxi);
end;
% Trim down again
interpIm=interpIm((x1+1):(x1+Psz(1)),(y1+1):(y1+Psz(2)),:);
movframe=uint8(interpIm);
writeVideo(v,movframe);
% Warp field is updated each second, by drifting the phase
if phasedrift>0
newsecs=floor(z/v.FrameRate);
if newsecs~=oldsecs
fprintf('Secs of movie processed: %d\n',newsecs)
oldsecs=newsecs;
% Alter phase
ph=ph+phasedrift*randn(ncomp,ncomp,4);
% Create new distortion field
cx=nextcx;
cy=nextcy;
[nextcx, nextcy, a, b, ph]=getdiffeo(imsz,maxdistortion,nsteps,ncomp,a,b,ph);
[nextcx, nextcy]=postprocess_diffeo(imsz,nextcx,nextcy);
end
end
end
close(v); %moved from below
end
end
% post process diffeo
function [cx,cy]=postprocess_diffeo(imsz,cx,cy)
[YI, XI]=meshgrid(1:imsz,1:imsz);
cy=YI+cy;
cx=XI+cx;
mask=(cx<1) | (cx>imsz) | (cy<1) | (cy>imsz) ;
cx(mask)=1;
cy(mask)=1;
end
% Create distortion field
% inputs
% imsz - size of visual image
% maxdistortion - max amount of displacement of any pixel after nsteps
% applications of flow field
% nsteps - number of flowfield steps needed
% ncomp - number of sin + cosine components along each axis
% outputs
% XIn, YIn are imsz*imsz flow field arrays of displacement (in pixels) in X and Y direction
%
%% Other function at bottom of the script
function [XIn, YIn, a, b, ph]=getdiffeo(imsz,maxdistortion,nsteps,ncomp,a,b,ph)
if ~exist('ncomp','var')
ncomp=6;
end;
[YI, XI]=meshgrid(1:imsz,1:imsz);
% make diffeomorphic warp field by adding random DCTs
if ~exist('ph','var')
ph=rand(ncomp,ncomp,4)*2*pi;
end;
if ~exist('a','var')
a=rand(ncomp,ncomp)*2*pi;
end;
if ~exist('b','var')
b=rand(ncomp,ncomp)*2*pi; % different amplitudes for x and y DCT components
end;
Xn=zeros(imsz,imsz);
Yn=zeros(imsz,imsz);
for xc=1:ncomp
for yc=1:ncomp
Xn=Xn+a(xc,yc)*cos(xc*XI/imsz*2*pi+ph(xc,yc,1))*cos(yc*YI/imsz*2*pi+ph(xc,yc,2));
Yn=Yn+b(xc,yc)*cos(xc*XI/imsz*2*pi+ph(xc,yc,3))*cos(yc*YI/imsz*2*pi+ph(xc,yc,4));
end;
end;
% Normalise to RMS of warps in each direction
Xn=Xn/sqrt(mean(Xn(:).*Xn(:)));
Yn=Yn/sqrt(mean(Yn(:).*Yn(:)));
YIn=maxdistortion*Yn/nsteps;
XIn=maxdistortion*Xn/nsteps;
end