LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

About x,y axis movement programs in LabVIEW

Thank you for your reply.

Is there a function or something that swaps the values of two cluster elements?

I have not studied enough and do not understand the ArrayToCluster function very well... sorry!

0 Kudos
Message 21 of 30
(156 Views)

@ikeda_kaoru wrote:

Thank you for your reply.

Is there a function or something that swaps the values of two cluster elements?

I have not studied enough and do not understand the ArrayToCluster function very well... sorry!


You could just reverse the array before converting to a cluster or you can rewrite the earlier logic so the elements are in the correct order already

 

(When using "array to cluster", it is also important to define the number of elements of the output. If you don't understand a function, read the help! Is there anything not clear?)

0 Kudos
Message 22 of 30
(151 Views)

@altenbach wrote:
... or you can rewrite the earlier logic so the elements are in the correct order already

For example, if you swap the inputs to the two "built array" nodes as follows, the cluster element values would be swapped.

 

 

altenbach_0-1743004915029.png

 

0 Kudos
Message 23 of 30
(148 Views)

Data is taken at intervals of 1 μs while moving the tip of the scanning tunneling microscope.

The number of data is 198 x 256 x 256 = 12976128.

From this data, I want to extract data from this data at intervals of 198, such as 1,199,397,595....

Then 65536 data should be extracted.

I want to create an image by placing this at 256 x 256 pixels.

The first step is to place the image from 0 pixel to 255 pixels in the x-axis direction. Next, move 1 pixel in the y-axis direction and place. Then, from 255 pixels back to 0 pixels in the x-axis direction. Then move 1 pixel in the y-axis direction and repeat the process. Please refer to the file(scan1.pdf).

0 Kudos
Message 24 of 30
(128 Views)

Thank you very much.
It worked.

0 Kudos
Message 25 of 30
(112 Views)

I would like to add a program to the attached program to retrieve binary data.
The number of data being read from the FIFO is 198 x 256 x 256 = 12976128. I want to get this data as an array as binary data.
Thank you in advance for your help.

Download All
0 Kudos
Message 26 of 30
(75 Views)

添付したプログラムに、バイナリデータを取得するプログラムを追加したいです。
FIFOから読み取っているデータ数は198×256×256=12976128です。

このデータを配列としてバイナリデータとして取得したいです。
よろしくお願いいたします。

Download All
0 Kudos
Message 27 of 30
(46 Views)

I'm still very confused about what hardware you are using.  Do you really have an FPGA that can save all those images?  Why/how are you using the FPGA?

 

I'm assuming that you are saving the 3D data (the first dimension being X, the second Y, and the third Image # (or Z), with indexing on alternate X and Y possibly alternating (increasing/decreasing), the first thing to do is to transform the linear scan to a 3D (XY images x Image # = video) representation that you should be able to view in an IMAQdx Window display.  You'll read the data in 256 pixels-at-a-time, reversing every other scan (assuming you are using a "back-and-forth" scanning motion (and possibly also "flipping" every other 256 x 256 images, if you not only scanned left-rignt but also down-up Y scannng).  Juat read the image data 256 elements at a time and with the same logic that you used to run the scan, use it to reassemble the video images.

 

Bob Schor

0 Kudos
Message 28 of 30
(56 Views)

I computers, everything is "binary" one way or another, so you need to be much more specific.

 

Most of your code is highly disorganized and flawed. For example connecting a local variable to its own terminal is completely senseless. Then you have plenty of interactive greedy loops. Who wrote this? Does it work well?

 

altenbach_1-1743873765290.png

 

 

 

 

0 Kudos
Message 29 of 30
(27 Views)

@ikeda_kaoru wrote:

I would like to add a program to the attached program to retrieve binary data.
The number of data being read from the FIFO is 198 x 256 x 256 = 12976128. I want to get this data as an array as binary data.
Thank you in advance for your help.


Your code is highly flawed and shows a glaring misunderstanding of many LabVIEW concepts. I already responded in your other thread containing the same question.

0 Kudos
Message 30 of 30
(47 Views)