LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Display point clouds with CVI

Hello

does anyone know if it is possible to display a point cloud with CVI? Which Control could be used for this?

 

Thanks in advance

ozi

0 Kudos
Message 1 of 6
(1,789 Views)

Hi,

 

just use the graph control and use PlotXY().

Or go all in and use the canvas and draw everything on your own.

 

Hope that helps.

-----------------------
/* Nothing past this point should fail if the code is working as intended */
0 Kudos
Message 2 of 6
(1,746 Views)

Hi

 

I recommend having a look at the CVI 3D examples given by NI.


You can use the OpenGL 3D Plotting control or the ActiveX CW 3D Graph or you can make one from scratch using the canvas control.

 

Jan

Message 3 of 6
(1,741 Views)

Thanks that helps a lot

 

I will try the Open GL and Active X

 

Thx

ozi

0 Kudos
Message 4 of 6
(1,715 Views)

I would not ignore the suggestion of a graph control: PlotXY with PlotStyle = SCATTER will draw a set of points and you have some options on point styles to play with. Other options will probably give more impacting presentation of results but this is the fastest way to show some data on screen.

Search for graph.cws example to have an immediate preview of this solution.



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
0 Kudos
Message 5 of 6
(1,701 Views)

Thats an interesting idea, I will try this too.

 

thx

ozi

0 Kudos
Message 6 of 6
(1,688 Views)