Click or drag to resize

ImageTColor, TDepthConvertTDepth2, TDepth3, TDepth4, TDepth5 Method (ImageTColor, TDepth2, ImageTColor, TDepth3, ImageTColor, TDepth4, FuncTDepth, TDepth2, TDepth3, TDepth4, TDepth5)

http://www.emgu.com
Compute the element of the new image based on the elements of the four image

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public Image<TColor, TDepth5> Convert<TDepth2, TDepth3, TDepth4, TDepth5>(
	Image<TColor, TDepth2> img2,
	Image<TColor, TDepth3> img3,
	Image<TColor, TDepth4> img4,
	Func<TDepth, TDepth2, TDepth3, TDepth4, TDepth5> converter
)
where TDepth2 : new()
where TDepth3 : new()
where TDepth4 : new()
where TDepth5 : new()

Parameters

img2
Type: Emgu.CVImageTColor, TDepth2
The second image
img3
Type: Emgu.CVImageTColor, TDepth3
The third image
img4
Type: Emgu.CVImageTColor, TDepth4
The fourth image
converter
Type: SystemFuncTDepth, TDepth2, TDepth3, TDepth4, TDepth5
The function to be applied to the image pixels

Type Parameters

TDepth2
The depth type of img2
TDepth3
The depth type of img3
TDepth4
The depth type of img4
TDepth5
The depth type of the result image

Return Value

Type: ImageTColor, TDepth5
The result image
See Also