Hi everyone. I am currently trying to write a program to activate a camera and take multple frames per second for an experiment. Currently, by writing these 8 bit 2D images directly to the hardrive, i can only achieve 6 or 7 frames per second which unfortunately will not be enough. I therefore am trying to save them in RAM and write them after the loop is finished. To do this im trying to build a 1D array of 2D arrays ( the images). I.e. A three dimensional array. so far i have tried using the "insert in to array icon" and combining a 3D array with my 2D images. However i am having trouble building the 3D array to start with. I then send it to an Index array and finally the flatten pixmap image icon. Is this a correct method for storing these images in RAM and if so how can i get over this stumbling block. Any help would be most apprerciated
Will