Concate the current image with another image vertically.
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, 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
)
Return Value
A new image that is the vertical concatening of this image and
otherImage
See Also