http://www.emgu.com
An interface for a descriptor generator
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public interface IDescriptorExtractor<TColor, TDescriptor>
where TColor : struct, new(), IColor
where TDescriptor : struct, new()
|
Visual Basic |
---|
Public Interface IDescriptorExtractor(Of TColor As {Structure, New, IColor}, TDescriptor As {Structure, New}) |
Visual C++ |
---|
generic<typename TColor, typename TDescriptor>
where TColor : value class, gcnew(), IColor
where TDescriptor : value class, gcnew()
public interface class IDescriptorExtractor |
Type Parameters
- TColor
- The type of color the descriptor extractor operates on
- TDescriptor
- The type of data in the descriptor. Can be either float or byte
See Also