CameraVideoRecordingStartRecording Method (String, String, CameraSnapshotFileFormat, Int32, Int32) |
Starts recording a frame stack. Each frame is saved as a separate image file. The filename of
each frame is defined by a prefix followed by a frame number.
Namespace:
AGI.Foundation.Graphics.Advanced
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public void StartRecording(
string fileDirectory,
string filePrefix,
CameraSnapshotFileFormat cameraSnapshotFileFormat,
int startingFrameNumber,
int numberOfFrameDigits
)
Public Sub StartRecording (
fileDirectory As String,
filePrefix As String,
cameraSnapshotFileFormat As CameraSnapshotFileFormat,
startingFrameNumber As Integer,
numberOfFrameDigits As Integer
)
public:
void StartRecording(
String^ fileDirectory,
String^ filePrefix,
CameraSnapshotFileFormat cameraSnapshotFileFormat,
int startingFrameNumber,
int numberOfFrameDigits
)
member StartRecording :
fileDirectory : string *
filePrefix : string *
cameraSnapshotFileFormat : CameraSnapshotFileFormat *
startingFrameNumber : int *
numberOfFrameDigits : int -> unit
Parameters
- fileDirectory
- Type: SystemString
The directory in which each frame will be saved. - filePrefix
- Type: SystemString
Used to create the filename of each saved frame. - cameraSnapshotFileFormat
- Type: AGI.Foundation.Graphics.AdvancedCameraSnapshotFileFormat
The file format of each saved frame. - startingFrameNumber
- Type: SystemInt32
The number of the first frame - numberOfFrameDigits
- Type: SystemInt32
The maximum number of digits available for defining the frame number
See Also