Create a binary File Storage

Namespace: Emgu.Util
Assembly: Emgu.Util (in Emgu.Util.dll) Version: 2.2.0.1010 (2.2.0.1010)

Syntax

         
 C#  Visual Basic  Visual C++ 
public BinaryFileStorage(
	string fileName,
	int trunkSize
)
Public Sub New ( _
	fileName As String, _
	trunkSize As Integer _
)
public:
BinaryFileStorage(
	String^ fileName, 
	int trunkSize
)

Parameters

fileName
String
The file name of the storage
trunkSize
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