MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The MgrPreprocessor manages the operations of the data pre-processor. More...
Public Member Functions | |
MgrPreprocessor (IXMyCaffe< T > imycaffe, IXStreamDatabase idb) | |
The constructor. More... | |
void | Dispose () |
Release all resources used. More... | |
void | Initialize (string strExtPath, int nFields, int nDepth) |
Initialize the pre-processor. More... | |
void | Reset (int nStartOffset) |
Reset the streaming database to the data start or an offset from the start. More... | |
Tuple< Blob< T >, SimpleDatum > | Step (bool bGetSimpleDatum, int nWait) |
Step to the next data in the streaming database and process it. More... | |
The MgrPreprocessor manages the operations of the data pre-processor.
T |
Definition at line 16 of file MgrPreprocessor.cs.
MyCaffe.preprocessor.MgrPreprocessor< T >.MgrPreprocessor | ( | IXMyCaffe< T > | imycaffe, |
IXStreamDatabase | idb | ||
) |
The constructor.
imycaffe | Specifies the instance of the MyCaffeControl to use. |
idb | Specifies the instance of the streaming database to use. |
Definition at line 29 of file MgrPreprocessor.cs.
void MyCaffe.preprocessor.MgrPreprocessor< T >.Dispose | ( | ) |
Release all resources used.
Definition at line 41 of file MgrPreprocessor.cs.
void MyCaffe.preprocessor.MgrPreprocessor< T >.Initialize | ( | string | strExtPath, |
int | nFields, | ||
int | nDepth | ||
) |
Initialize the pre-processor.
strExtPath | Specifies the path to the pre-processor extension DLL to use. |
nFields | Specifies the number of fields that the pre-processor uses. |
nDepth | Specifies the depth of the pre-processor. |
Definition at line 62 of file MgrPreprocessor.cs.
void MyCaffe.preprocessor.MgrPreprocessor< T >.Reset | ( | int | nStartOffset | ) |
Reset the streaming database to the data start or an offset from the start.
nStartOffset | Specifies the offset from the start to use. |
Definition at line 94 of file MgrPreprocessor.cs.
Tuple< Blob< T >, SimpleDatum > MyCaffe.preprocessor.MgrPreprocessor< T >.Step | ( | bool | bGetSimpleDatum, |
int | nWait | ||
) |
Step to the next data in the streaming database and process it.
bGetSimpleDatum | When true, specifies to create the SimpleDatum for data visualization. |
nWait | Specifies the amount of time in ms. to wait for data. |
Definition at line 105 of file MgrPreprocessor.cs.