IMAQ.CameraController.SingleSnapshot C# (CSharp) 메소드

SingleSnapshot() 공개 메소드

public SingleSnapshot ( string attributesPath ) : ].byte[
attributesPath string
리턴 ].byte[
        public byte[,] SingleSnapshot(string attributesPath)
        {
            return SingleSnapshot(attributesPath, false);
        }

Same methods

CameraController::SingleSnapshot ( string attributesPath, bool addToImageList ) : ].byte[

Usage Example

예제 #1
0
 private void SnapshotButton_Click(object sender, EventArgs e)
 {
     IM.SingleSnapshot((string)Environs.FileSystem.Paths["UntriggeredCameraAttributesPath"]);
 }