Skip to content

Instantly share code, notes, and snippets.

View ekatrukha's full-sized avatar
🛠️
quo

Eugene Katrukha ekatrukha

🛠️
quo
View GitHub Profile
@ekatrukha
ekatrukha / zoom_movie_ImageJ_v3_stack.ijm
Created October 24, 2024 04:47
zoom in macro for stacks
//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);