interface MockCameraParams {
    captureFileUri?: string;
    imageFileUri: string;
    refreshOnEachFrame?: boolean;
}

Properties

captureFileUri?: string

The URI of the image file to be used as a mock camera capture image. If not provided, the imageFileUri will be used.

imageFileUri: string

The URI of the image file to be used as a mock camera preview image.

refreshOnEachFrame?: boolean

If enabled, the mock camera will refresh the preview image on each frame. Default is false.