z

Class AutoShotDetector

Wraps the native auto-shot detector which monitors document corner stability to trigger automatic capture.

public class AutoShotDetector : IDisposable

Method

AddDetectedCorners(PxlPoint[])

Appends the latest detected document corners and updates stability state. Pass null to reset the detector.

public bool AddDetectedCorners(PxlPoint[] points)

Dispose()

Releases the native detector handle.

public void Dispose()

SetParams(int, int, int)

Configures the detector thresholds and resets the internal state.

public void SetParams(int stable_radius, int stable_delay, int stable_count)
Top