ImageTColor, TDepthConcateHorizontal Method |
http://www.emgu.com
Concate the current image with another image horizontally.
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> ConcateHorizontal(
Image<TColor, TDepth> otherImage
)
Public Function ConcateHorizontal (
otherImage As Image(Of TColor, TDepth)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ ConcateHorizontal(
Image<TColor, TDepth>^ otherImage
)
member ConcateHorizontal :
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 horizontal concatening of this image and
otherImage
See Also