Skip to content

Commit cf24e09

Browse files
authored
Merge pull request #154 from RNA-FRETools/fix-diff-vid-dim
Correct assignment of video dimensions when calculating background trajectories
2 parents a90dfd3 + be1f536 commit cf24e09

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

MASH-FRET/source/mod-trace-processing/background/calcbgint.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
else
7676
fDat{2}{2} = [];
7777
end
78-
fDat{3} = [res_y res_x];
78+
fDat{3} = [res_x res_y];
7979
fDat{4} = viddat_mv{3};
8080

8181
if meth~=6

MASH-FRET/source/mod-video-processing/graphic-files/readTif_regular.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
disp(sprintf(str));
8080
end
8181

82-
[data,ok] = readTif(fullFname,1,fDat,h_fig,0);
82+
[data,ok] = readTif_regular(fullFname,1,fDat,h_fig,0);
8383
frameCur = data.frameCur;
8484

8585
else

0 commit comments

Comments
 (0)