Makes a copy of the histogram. If the second histogram pointer *dst is NULL, a new histogram of the same size as src is created. Otherwise, both histograms must have equal types and sizes. Then the function copies the source histogram bins values to destination histogram and sets the same bin values ranges as in src.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvCopyHist(
	IntPtr src,
	ref IntPtr dst
)
Public Shared Sub cvCopyHist ( _
	src As IntPtr, _
	ByRef dst As IntPtr _
)
public:
static void cvCopyHist(
	IntPtr src, 
	IntPtr% dst
)

Parameters

src
IntPtr
The source histogram
dst
IntPtr%
The destination histogram

See Also