02-19-2021 02:49 PM
For my research I want to write data to a set list of pre-specified paths. While one set of data is being written, a separate script analyses the contents of the previous dataset (video) and pulls out interesting frames (this part is working). Once analysed the file should be left in place and overwritten on the next pass.
What's the best/easiest way to store a list of filepaths, and then cycle between them as the data acquisition progresses?
I'm relatively new to LabVIEW but fairly experienced in matlab and python.
Thanks!
02-19-2021 03:03 PM - edited 02-19-2021 03:08 PM
Create an array of paths and cycle through them using the remainder of [i]QR[array size]
02-21-2021 07:21 AM
Works perfectly, thanks!