|
在LabVIEW下有兩種方式可以呈現影像。第一個方法是使用一維陣列資料形式的"flat pixmap"。舉例來說,使用VI Server method的Get Panel Image會回傳flat pixmap。有一些VIs(例如Write BMP File.vi,Write PNG File.vi以及Write JPEG File.vi)都需要使用flat pixmap。
如果你要使用Intensity Graph來顯示flat pixmap,那麼必須先做unflatten的動作,將其轉換至unflattened pixmap。Unflattened pixmap的資料型態為二維陣列,所以可以連結至Intensity Graph來顯示。你可能也需要將unflattened pixmap連接至下面的VIs: Draw 1-bit Pixmap, Draw 4-bit Pixmap,Draw 8-bit Pixmap.vi以及Draw True Color Pixmap.vi。這些VIs提供一個影像的輸出,可以使用Picture指示元來顯示。
如果你要顯示flattened pixmap在Picture顯示元,那就要先使用Draw Flattened Pixmap.vi。
|