View Single Post
  #1   Spotlight this post!  
Unread 26-01-2012, 19:20
DjScribbles DjScribbles is offline
Programming Mentor
AKA: Joe S
FRC #2474 (Team Excel)
Team Role: Mentor
 
Join Date: Oct 2011
Rookie Year: 2012
Location: Niles MI
Posts: 284
DjScribbles is a splendid one to beholdDjScribbles is a splendid one to beholdDjScribbles is a splendid one to beholdDjScribbles is a splendid one to beholdDjScribbles is a splendid one to beholdDjScribbles is a splendid one to beholdDjScribbles is a splendid one to beholdDjScribbles is a splendid one to behold
Vision Assistant C code generation

So, our team has setup a script in the NI Vision Assistant to process our images, we go through the whole process and get a binary image, and then have a particle analysis on it. However, once we generate code, I see that the public interface "IVA_ProcessImage" only passes back the success and the modified image, and in the C file, I can see that it computes particle data in the ivaData variable, then simply discards it before returning...

Is there a simple step we missed in the script to cause it to generate the return of this data? It is simple enough to modify the code to return the ivaData as well, but having to do it every time we tweak our script is less than ideal.