http://www.emgu.com
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.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void cvCopyHist(
IntPtr src,
ref IntPtr dst
) |
Visual Basic |
---|
Public Shared Sub cvCopyHist ( _
src As IntPtr, _
ByRef dst As IntPtr _
) |
Visual C++ |
---|
public:
static void cvCopyHist(
IntPtr src,
IntPtr% dst
) |
See Also