Concate the current image with another image vertically.
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public Image<TColor, TDepth> ConcateVertical(
Image<TColor, TDepth> otherImage
) |
Visual Basic (Declaration) |
---|
Public Function ConcateVertical ( _
otherImage As Image(Of TColor, TDepth) _
) As Image(Of TColor, TDepth) |
Visual C++ |
---|
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