-
Notifications
You must be signed in to change notification settings - Fork 22
Preprocessing: Temporal downsampling
Biafra Ahanonu edited this page Jul 23, 2021
·
2 revisions
Please use the online documentation website going forward: https://bahanonu.github.io/ciatah/
Example code to run the downsample test function with the following commands:
loadRepoFunctions;
testMovie = loadMovieList('pathToMovieFile');
unitTestDownsampleMovie(testMovie,'interp1Method','linear','cropSize',5);
Below is an example pixel from a cell in a BLA animal. Note...
- ImageJ
Scale...
+bilinear+averaging (blue) and Matlabimresize
+bilinear (red) both produce pretty much identical results. -
imresize
using bilinear and bicubic produce similar results with bicubic having slower runtimes (e.g. on my machine 3.46 vs. 4.31 sec if setcropSize
to 100). - The number next to each name is the vector's variance.