This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ImageJ macro making a tilted movie out of stack | |
//uses shear transform + rotation | |
//Eugene Katrukha katpyxa at gmail.com | |
requires("1.48h"); | |
sTitle=getTitle(); | |
sMovieTitle=sTitle+"_tilt_movie"; | |
setBatchMode(true); | |
//Dialog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Insert your preferred key mappings here. | |
unmapAll | |
# Basic movement | |
map d scrollLeft | |
map h scrollDown | |
map t scrollUp | |
map n scrollRight | |
map ii scrollToTop | |
map I scrollToBottom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# library() or require() only load one package at a time | |
# but... | |
Packages <- c("dplyr", "ggplot2", "rstan", "readr") | |
lapply(Packages, library, character.only = TRUE) | |
# this loads as many as you put in 'Packages'. They need to be installed first, of course. |