LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

animaiton of 2D graph

Dear
 
I would like to present my results according to various paramters with powerpoint.
Would you please let me know how to capture the 2D graph (and parameter controls) or make the file with LV conveniently?
Should I save the image frames and then make the avi file in independent avi-application?


메시지가 07-22-2008 09:29 AM에 labmaster에 의해 편집되었음
Message 1 of 11
(4,541 Views)
You can get an image of the graph using the "Get Image" property and save that to a file. You can then do whatever you want with that image, such as making it into a movie using an avi tool, or import it into PowerPoint.


 


Message Edited by smercurio_fc on 07-22-2008 10:19 AM
Message 2 of 11
(4,529 Views)
There are also programs for capturing what you see on the screen to a video file (e.g. Jing, Camtasia).

___________________
Try to take over the world!
Message 3 of 11
(4,512 Views)

So, I've dug around and can't seem to find the "Get Image" property...could you point me in the right direction?  I have 2 DDT's going into a Build XY Graph Express VI, then Cluster to XY Graph.

 

Thanks,

Ria 

Tyler C. | Certified LabVIEW Associate Developer

0 Kudos
Message 4 of 11
(4,329 Views)

Riatin wrote:

So, I've dug around and can't seem to find the "Get Image" property...could you point me in the right direction?  I have 2 DDT's going into a Build XY Graph Express VI, then Cluster to XY Graph.

 

Thanks,

Ria 


It is actually a method and not a property.

 

Bonus Q:

 

Has anyone come up with a nice clean rule that describes when NI makes something a method vs a property?

 

I surely have not recognized the pattern yet.

 

Ben

Retired Senior Automation Systems Architect with Data Science Automation LabVIEW Champion Knight of NI and Prepper LinkedIn Profile YouTube Channel
0 Kudos
Message 5 of 11
(4,326 Views)

Ben,

Congrats on being Knighted  😃    I'm still lost...

 

Tyler 

Tyler C. | Certified LabVIEW Associate Developer

0 Kudos
Message 6 of 11
(4,322 Views)
instead of create property node use the create invoke node
Harold Timmis
htimmis@fit.edu
Orlando,Fl
*Kudos always welcome:)
Message 7 of 11
(4,321 Views)

Mr. Timmis,

That's what I was looking for!

 

Cheers,

Tyler 

Tyler C. | Certified LabVIEW Associate Developer

0 Kudos
Message 8 of 11
(4,309 Views)

hey ben

 

I think the difference is that the property node does not have a connector that is white with no ability to connect to it, and invoke nods do...

Harold Timmis
htimmis@fit.edu
Orlando,Fl
*Kudos always welcome:)
0 Kudos
Message 9 of 11
(4,305 Views)

Ben wrote:

 

Has anyone come up with a nice clean rule that describes when NI makes something a method vs a property?


Not a rule, but an educated guess: The properties and methods are closely tied in to the C++ class hierarchy which is used to represent the VI server hierarchy. The properties allow having access to the data members of a class using a common interface so that NI doesn't have to rewrite code. Methods are used when you need to perform some extra action (e.g. get the data in a format which is not native to what the class already has) or when what you want to do requires extra data as input.


___________________
Try to take over the world!
Message 10 of 11
(4,304 Views)