03-07-2024 02:16 AM
vision assistantで構築した画像処理をexeファイル化するためにviを作成しています。
画像処理ウィンドウで複数のキャリパを同時に表示してそれぞれエッジ検出をさせたいのですが
キャリパを同時に表示させることができません。
解決策を教えていただけると助かります。
サンプルのStraight Edge Detection.viをベースに
ラインキャリパ2個
ボックスキャリパ1個を画像ウィンドウに配置して
ユーザーに画面上でキャリパを操作させたいです。
よろしくお願いします。
Solved! Go to Solution.
03-07-2024 05:09 AM - edited 03-07-2024 05:09 AM
Autotranslated to English:
We create vi to convert image processing built with vision assistant to exe file.
I want to display multiple calipers at the same time in the image processing window and make edge detection respectively
The caliper cannot be displayed at the same time.
It will be helpful if you tell us the solution.
Based on the Straight Edge Detection.vi of the sample
2 Line Calipers
box caliper, put one in the picture window
I want the user to operate the caliper on the screen.
Not sure what you mean exactly, but if you want to display multiple calipers at the same time, then they are displayed simultaneously:
assumed that you will export code from Visual Assitant to LabVIEW VI (to be able to turn this code to executable), and both called sequentially and displayed as shown above:
Autogenerated piece of code with minor clean up looks like this, sequential call will keep overlays:
What is your particular problem exactly?
03-07-2024 06:24 PM
ありがとうございます。
私が求めている機能は
viを実行中に複数のキャリパを自由に動かしたい。
Straight Edge Detection.vi にキャリパを追加したいです。
03-08-2024 08:24 AM
@ame2 wrote:
Thank you very much.
the features i'm looking for
I want to move multiple calipers freely while running vi.
I want to add a caliper to the Straight Edge Detection.vi.
Well, if you need to move multiple "calipers" (ROIs, probably) interactively, then you have to add while loop, and get ROIs from Property Node, then compute a distance between both edges, in simplest way like this (you should take care about geometry, angles of, course, etc):
Then it will looks like this:
Alternatively you can probably use Clamp (Rake):
Then exported code after same modification will be like this:
And you will get the distance with single ROI:
03-08-2024 09:27 AM
ありがとうございます。
動画の内容が求めていたものです。
とても参考になります。
viを作ってみて、結果を連絡します。
03-10-2024 11:05 PM
ありがとうございました。
欲しかったviが作成できました。
助かりました。