Last active
August 2, 2017 00:04
-
-
Save immengineer/5d6d9c8e9e005e03cf058c1d3ba2f8bd to your computer and use it in GitHub Desktop.
JAISDK 画像取込/停止
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void StartButton_Click(object sender, EventArgs e) | |
{ | |
if (myCamera != null) | |
myCamera.StartImageAcquisition(true, 5); | |
} | |
private void StopButton_Click(object sender, EventArgs e) | |
{ | |
if (myCamera != null) | |
myCamera.StopImageAcquisition(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment