Issue running workflow to obtain voltage data from Measurement computing Daq (MccDaq) #1235
-
Hi all, I am trying to set up a basic workflow to collect voltage data from a measurement computing DAQ. I am using the AnalogInput sink (included in the MccDaq library that I have installed) to record 3 different channels - I’ve included a snapshot of what the node looks like. I attempt to isolate the data output (assuming these are the voltage values from the daq input) by right clicking the AnalogInput node and selecting “Output (OpenCV.Net.Mat)” and from there selecting “data”. I then connect this to a MatrixWriter node, but get an error when I attempt to run the workflow, reading “no method overload found for the given arguments.” Note that I have “OpenCV.Net.Mat” selected for the TypeMapping property in the data output. Is there something I am missing? Should I not be pulling out the “data” output of the AnalogInput and instead just connecting MatrixWriter to AnalogInput directly? I know someone asked a similar question in this thread, but it doesn't look like think it was ever answered. Also, note that we are using Bonsai32 as it is the only version of Bonsai compatible with the driver (CL eye multicam driver) that we will be using for our cameras (PS3Eye Camera). Any input is much appreciated - thank you so much! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The |
Beta Was this translation helpful? Give feedback.
MatrixWriter
can handle aMat
input directly, so it should work if you just remove the middle node.The
Data
property is actually a pointer to the raw buffer memory location, and usually only needed for lower-level manipulations.