BinaryFileStorageT Constructor (String, IEnumerableT) |
http://www.emgu.com
Create a binary File Storage with the specific data
Namespace:
Emgu.CV.Util
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic BinaryFileStorage(
string fileName,
IEnumerable<T> samples
)
Public Sub New (
fileName As String,
samples As IEnumerable(Of T)
)
public:
BinaryFileStorage(
String^ fileName,
IEnumerable<T>^ samples
)
new :
fileName : string *
samples : IEnumerable<'T> -> BinaryFileStorage
Parameters
- fileName
- Type: SystemString
The file name of the storage, all data in the existing file will be replaced - samples
- Type: System.Collections.GenericIEnumerableT
The data which will be stored in the storage
See Also