StreamWait Method (WaitStatus)

CVB.Net Documentation
Waits for indefinitely for the next acquired image and returns it.

Namespace:  Stemmer.Cvb.Driver
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public virtual StreamImage Wait(
	out WaitStatus status
)

Parameters

status
Type: Stemmer.Cvb.DriverWaitStatus
Either Ok or Abort if opperation was Aborted.

Return Value

Type: StreamImage
Grabbed image.

Implements

IAcquisitionWait(WaitStatus)
Remarks

Dispose the returned Image when not needed anymore!

By default the returned image content is only guaranteed to stay unchanged until the next call to this method; afterwards the returned image is normally disposed. Thus it is normally not save to use this image in a display.

The returned image is not necessary the newest. If more images where acquired since the last call to this method, the content is the oldest not collected image buffer by default.

You can also Abort this wait call which results in status being Abort.

See Also

Reference