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 movie (stack) of zooming on selected rectangle (ROI) | |
//Eugene Katrukha katpyxa at gmail.com | |
requires("1.48h"); | |
//check if there is rectangular selection | |
if(selectionType() ==0) | |
{ | |
sTitle=getTitle(); | |
//see if it is a timelapse or z-stack | |
Stack.getDimensions(widthS, heightS, channelsS, slicesS, framesS); |
OlderNewer