Convert this GpuMat to different depth

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public GpuMat<TOtherDepth> Convert<TOtherDepth>(
	Stream stream
)
where TOtherDepth : new()
Public Function Convert(Of TOtherDepth As New) ( _
	stream As Stream _
) As GpuMat(Of TOtherDepth)
public:
generic<typename TOtherDepth>
where TOtherDepth : gcnew()
GpuMat<TOtherDepth>^ Convert(
	Stream^ stream
)

Parameters

stream
Stream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).

Type Parameters

TOtherDepth
The depth type to convert to

Return Value

GpuMat of different depth

See Also