ImageTColor, TDepthConcateVertical Method |
http://www.emgu.com
Concate the current image with another image vertically.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> ConcateVertical(
Image<TColor, TDepth> otherImage
)
Public Function ConcateVertical (
otherImage As Image(Of TColor, TDepth)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ ConcateVertical(
Image<TColor, TDepth>^ otherImage
)
member ConcateVertical :
otherImage : Image<'TColor, 'TDepth> -> Image<'TColor, 'TDepth>
Parameters
- otherImage
- Type: Emgu.CVImageTColor, TDepth
The other image to concate
Return Value
Type:
ImageTColor,
TDepthA new image that is the vertical concatening of this image and
otherImage
See Also