Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
changed fontsize
Browse files Browse the repository at this point in the history
  • Loading branch information
MPIBR-vollrathf committed Sep 7, 2016
1 parent 11018e0 commit 9fdec86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 97 deletions.
4 changes: 2 additions & 2 deletions CellsortApplyFilter.m
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@

fprintf('Loading %5g frames for %d ROIs.\n', nt, size(ica_segments,1))
tic
while k<nt
while k<nt %1:numberOfFrames
ntcurr = min(500, nt-k);
mov = zeros(pixw, pixh, ntcurr);
for j=1:ntcurr
movcurr = data_g(:,:,j+k+flims(1)-1);%imread(fn, j+k+flims(1)-1);
mov(:,:,j) = movcurr;
end
mov = (mov ./ repmat(movm, [1,1,ntcurr])) - 1; % Normalize by background and subtract mean

if subtractmean
% Subtract the mean of each frame
movtm = mean(mean(mov,1),2);
Expand Down
94 changes: 0 additions & 94 deletions alternativePlot.asv

This file was deleted.

2 changes: 1 addition & 1 deletion alternativePlot.m
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
%get position to draw number in
mask = squeeze(ica_segments(number,:,:));
cog = centerofgravity(mask);
text(cog(2), cog(1), num2str(i), 'Color', 'white')
text(cog(2), cog(1), num2str(i), 'Color', 'white', 'FontSize', 15)

end
end
Expand Down

0 comments on commit 9fdec86

Please sign in to comment.