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