CaptureImage.frameCount Property

Module: CaptureImage

Type: int

Definition

Tracks the total number of frames captured since the start of the capture session.

This count can be useful for analyzing frame rates, detecting dropped frames, or navigating through a sequence of captured images.

frame_count: int

Exceptions

An error has occurred during Devices Library execution.
int get frameCount => getFrameCount();
set frameCount(int value) => setFrameCount(value);

Exceptions

An error has occurred during Devices Library execution.
public int frameCount
{
    get => GetframeCount();
    set => SetframeCount(ref value);
}

Exceptions

An error has occurred during Devices Library execution.
public int getFrameCount() throws DevicesException
public void setFrameCount(int frameCount) throws DevicesException

Exceptions

An error has occurred during Devices Library execution.
int id3DevicesCaptureImage_GetFrameCount (ID3_DEVICES_CAPTURE_IMAGE hCaptureImage, int * frameCount)
int id3DevicesCaptureImage_SetFrameCount (ID3_DEVICES_CAPTURE_IMAGE hCaptureImage, int frameCount)

Returns

int
An error code.
See id3DevicesError file for the list of possible error codes.