Hello everyone, I am currently working hard to complete the task mentioned in the title.
Let me first give you an overview of the current situation. The LabVIEW program I wrote is based on the SDK provided by Thorlabs, and their cameras have an API.
I have already added the System Exec VI and written an ImageJ macro.
open("C:\\images\\frame1.tiff");
// 進行處理(例如轉為灰階)
run("8-bit"); // 將影像轉為灰階
// 保存處理過的影像
saveAs("Tiff", "C:\\images\\processed_frame1.tiff");
// 關閉當前影像
close();
I want to connect blocks like IMAQ Array to Image and IMAQ Write File 2 after transferring the 2D array. How should I correctly connect them?
The current issue is that I want to convert the image to a .tiff file.
My goal is to save each frame of the image from LabVIEW to a file and then use an ImageJ macro to capture the image.