|
BagOfVisualWordsLoadTPoint, TFeature Method (String)
|
Note: This API is now obsolete.
Loads a bag of words from a file.
Namespace:
Accord.Imaging
Assembly:
Accord.Vision (in Accord.Vision.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please use the Accord.IO.Serializer<BagOfVisualWords<TPoint, TFeature>>.Load() method instead.")]
public static BagOfVisualWords<TPoint, TFeature> Load<TPoint, TFeature>(
string path
)
where TPoint : Object, IFeaturePoint<TFeature>
<ObsoleteAttribute("Please use the Accord.IO.Serializer<BagOfVisualWords<TPoint, TFeature>>.Load() method instead.")>
Public Shared Function Load(Of TPoint As {Object, IFeaturePoint(Of TFeature)}, TFeature) (
path As String
) As BagOfVisualWords(Of TPoint, TFeature)
Request Example
View SourceParameters
- path
- Type: SystemString
The path to the file from which the bow is to be deserialized.
Type Parameters
- TPoint
- TFeature
Return Value
Type:
BagOfVisualWordsTPoint,
TFeatureThe deserialized bag of words.
See Also