http://www.emgu.com
Create a binary File Storage
Namespace: Emgu.UtilAssembly: Emgu.Util (in Emgu.Util.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public BinaryFileStorage(
string fileName,
int trunkSize
) |
Visual Basic |
---|
Public Sub New ( _
fileName As String, _
trunkSize As Integer _
) |
Visual C++ |
---|
public:
BinaryFileStorage(
String^ fileName,
int trunkSize
) |
Parameters
- fileName
- Type: System..::..String
The file name of the storage
- trunkSize
- Type: System..::..Int32
The data will be read in trunk of this size internally. Can be use to seed up the file read. A good number will be 4096
See Also