URL import frame interval
Posted by
Henkka on
Mar 04, 2010; 1:40pm
URL: http://imagej.273.s1.nabble.com/URL-import-frame-interval-tp3689106.html
Hi all,
Im importing a series of pictures via network camera and creating a stack for further analysis. The problem is that the frame interval is not steady. My goal is to get constant 1 fps but the framerate changes from 1-~0.3 fps.
Im using this set of macro:
setBatchMode(true)
for (i=0;i<220;i++)
{
run("URL...", "url=
http://xxx.xxx.x.xxx/jpg/image.jpg");
wait(1000);
}
setBatchMode("exit and display")
run ("Images to Stack", "title=image");
Any help is much appreciated!
-H