Skip to content

Instantly share code, notes, and snippets.

@immengineer
Last active August 2, 2017 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save immengineer/5d6d9c8e9e005e03cf058c1d3ba2f8bd to your computer and use it in GitHub Desktop.
Save immengineer/5d6d9c8e9e005e03cf058c1d3ba2f8bd to your computer and use it in GitHub Desktop.
JAISDK 画像取込/停止
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