I am struggling to store an array of (x,y) coordinates of a particle/blob in a database by creating a table such that:
Column: represents a particle/blob in AVI
Row: represents a frame number of AVI
Each cell of table: represents a set of (X,Y) coordinates of all the pixels available in a partcular frame.
I have created a table with a single column which represents a single particle/blob of a AVI and rows corresponding to a the number of frame numbers. The LabVIEW doesn't display the array on the table (Array gets converted into Binary datatype which is non displayable), so I even tried to convert the Array(Array in front panel) into string by using Flatten To String.VI. But, even after converting the array into string, still the table doesn't display the 'set of coordinates' as string.
Can someone give me insight into how i can store such 'set of coordinates' in a single cell of database table? Also, how can I extract a particular row (corresponding to a frame number) from a table since a a row is simply named as 'VALUE' in a table (Check Capture image)