Emgu.CV.CvInvoke.CvRetinaRun C# (CSharp) Метод

CvRetinaRun() приватный Метод

private CvRetinaRun ( IntPtr retina, IntPtr image ) : void
retina IntPtr
image IntPtr
Результат void
        internal static extern void CvRetinaRun(IntPtr retina, IntPtr image);

Usage Example

Пример #1
0
 /// <summary>
 /// Method which allows retina to be applied on an input image, after run, encapsulated retina module is ready to deliver its outputs using dedicated acccessors. <seealso cref="GetParvo()"/> and <seealso cref="GetMagno()"/>
 /// </summary>
 /// <param name="image">The input image to be processed</param>
 public void Run(Image <Bgr, byte> image)
 {
     CvInvoke.CvRetinaRun(_ptr, image);
 }
CvInvoke