Compute the element of a new image based on the value as well as the x and y positions of each pixel on the image

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TOtherDepth> Convert<TOtherDepth>(
	Func<TDepth, int, int, TOtherDepth> converter
)
where TOtherDepth : new()
Public Function Convert(Of TOtherDepth As New) ( _
	converter As Func(Of TDepth, Integer, Integer, TOtherDepth) _
) As Image(Of TColor, TOtherDepth)
public:
generic<typename TOtherDepth>
where TOtherDepth : gcnew()
Image<TColor, TOtherDepth>^ Convert(
	Func<TDepth, int, int, TOtherDepth>^ converter
)

Parameters

converter
Func<(Of <(<'TDepth, Int32, Int32, TOtherDepth>)>)>

[Missing <param name="converter"/> documentation for "M:Emgu.CV.Image`2.Convert``1(System.Func{`1,System.Int32,System.Int32,``0})"]

Type Parameters

TOtherDepth

[Missing <typeparam name="TOtherDepth"/> documentation for "M:Emgu.CV.Image`2.Convert``1(System.Func{`1,System.Int32,System.Int32,``0})"]

Return Value

[Missing <returns> documentation for "M:Emgu.CV.Image`2.Convert``1(System.Func{`1,System.Int32,System.Int32,``0})"]

See Also