ImageTColor, TDepthMin Method (ImageTColor, TDepth) |
http://www.emgu.com Find the elementwise minimum value
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic Image<TColor, TDepth> Min(
Image<TColor, TDepth> img2
)
Public Function Min (
img2 As Image(Of TColor, TDepth)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Min(
Image<TColor, TDepth>^ img2
)
member Min :
img2 : Image<'TColor, 'TDepth> -> Image<'TColor, 'TDepth>
Parameters
- img2
- Type: Emgu.CVImageTColor, TDepth
The second image for the Min operation
Return Value
Type:
ImageTColor,
TDepth An image where each pixel is the minimum of
this image and the parameter image
See Also