|  | 
                                MyCaffe
                                 1.12.2.41
                             Deep learning software for Windows C# programmers. | 
The Extension class is used to add new pre-processor extension DLL's to MyCaffe. More...
 
 | Public Member Functions | |
| Extension (IXMyCaffeExtension< T > iextension) | |
| The constructor.  More... | |
| void | Dispose () | 
| Release the processor extension.  More... | |
| void | Initialize (string strPath) | 
| Initialize a new pre-processor extension and load it.  More... | |
| void | Run (FUNCTION fn) | 
| Run a function on the pre-processor DLL without any arguments.  More... | |
| double[] | Run (FUNCTION fn, double[] rgParam) | 
| Run a function on the pre-processor DLL with arguments.  More... | |
| float[] | Run (FUNCTION fn, float[] rgParam) | 
| Run a function on the pre-processor DLL with arguments.  More... | |
The Extension class is used to add new pre-processor extension DLL's to MyCaffe.
| T | 
Definition at line 14 of file Extension.cs.
| MyCaffe.preprocessor.Extension< T >.Extension | ( | IXMyCaffeExtension< T > | iextension | ) | 
The constructor.
| iextension | Specifies the IXMyCaffeExtension interface implemented by the MyCaffeControl. | 
Definition at line 58 of file Extension.cs.
| void MyCaffe.preprocessor.Extension< T >.Dispose | ( | ) | 
Release the processor extension.
Definition at line 66 of file Extension.cs.
| void MyCaffe.preprocessor.Extension< T >.Initialize | ( | string | strPath | ) | 
Initialize a new pre-processor extension and load it.
| strPath | Specifies the pre-processor DLL path to load. | 
Definition at line 80 of file Extension.cs.
| void MyCaffe.preprocessor.Extension< T >.Run | ( | FUNCTION | fn | ) | 
Run a function on the pre-processor DLL without any arguments.
| fn | Specifies the function to run. | 
Definition at line 92 of file Extension.cs.
| double[] MyCaffe.preprocessor.Extension< T >.Run | ( | FUNCTION | fn, | 
| double[] | rgParam | ||
| ) | 
Run a function on the pre-processor DLL with arguments.
| fn | Specifies the function to run. | 
| rgParam | Specifies the arguments. | 
Definition at line 103 of file Extension.cs.
| float[] MyCaffe.preprocessor.Extension< T >.Run | ( | FUNCTION | fn, | 
| float[] | rgParam | ||
| ) | 
Run a function on the pre-processor DLL with arguments.
| fn | Specifies the function to run. | 
| rgParam | Specifies the arguments. | 
Definition at line 114 of file Extension.cs.