LoggingMode

Specify destination for acquired data

Description

The LoggingMode property specifies where you want the video input object to store the acquired data. You can specify any of the following values:

Value

Description

'disk'

Log acquired data to a disk file.

'disk&memory'

Log acquired data to both a disk file and to a memory buffer.

'memory'

Log acquired data to a memory buffer.

If you select 'disk' or 'disk&memory', you must specify the AVI file object used to access the disk file as the value of the DiskLogger property.

Note

When logging data to memory, you must extract the acquired data in a timely manner with the getdata function to avoid using up all the memory that is available on your system.

Note

The peekdata function does not return any data while running if in disk logging mode.

Characteristics

Access

Read only while running

Data type

Character vector

Values

[ 'disk' | 'disk&memory' | {'memory'} ]

Default value is enclosed in braces ({}).

See Also

Functions

getdata

Properties

DiskLogger, Logging