Compute the element of the new image based on element of this image
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)
Syntax
| | | | | | | | |
| C# | | | Visual Basic | | | Visual C++ | |
public Image<TColor, TOtherDepth> Convert<TOtherDepth>(
Converter<TDepth, TOtherDepth> converter
)
where TOtherDepth : new()
Public Function Convert(Of TOtherDepth As New) ( _
converter As Converter(Of TDepth, TOtherDepth) _
) As Image(Of TColor, TOtherDepth)
public:
generic<typename TOtherDepth>
where TOtherDepth : gcnew()
Image<TColor, TOtherDepth>^ Convert(
Converter<TDepth, TOtherDepth>^ converter
)
Parameters
- converter
- Converter<(Of <(TDepth, TOtherDepth>)>)
[Missing <param name="converter"/> documentation for "M:Emgu.CV.Image`2.Convert``1(System.Converter{`1,``0})"]
Type Parameters
- TOtherDepth
[Missing <typeparam name="TOtherDepth"/> documentation for "M:Emgu.CV.Image`2.Convert``1(System.Converter{`1,``0})"]
Return Value
[Missing <returns> documentation for "M:Emgu.CV.Image`2.Convert``1(System.Converter{`1,``0})"]
See Also