CaptureData.frameCount Property¶
Module: CaptureData
Type: int
Definition¶
Maintains a count of the total number of data frames captured since the initiation of the capture session.
This attribute is crucial for applications that process frame-based data, such as video or time-series sensor data, enabling frame rate calculations and sequence analysis.
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 id3DevicesCaptureData_GetFrameCount (ID3_DEVICES_CAPTURE_DATA hCaptureData, int * frameCount)
int id3DevicesCaptureData_SetFrameCount (ID3_DEVICES_CAPTURE_DATA hCaptureData, int frameCount)
Returns