Advertisement
lepe

opencv-vapi-patch

Jan 18th, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.41 KB | None | 0 0
  1. --- opencv.vapi.orig    2012-01-18 16:19:36.000000000 +0900
  2. +++ opencv.vapi 2012-01-18 16:19:50.000000000 +0900
  3. @@ -1,4 +1,5 @@
  4.  /**
  5. + * http://code.coeusgroup.com/vapis/opencv.vapi
  6.   * OpenCV Vala Bindings
  7.   * Copyright 2010 Evan Nemerson <evan@coeus-group.com>
  8.   *
  9. @@ -147,6 +148,8 @@
  10.         public void poly_line ([CCode (array_length = false)] OpenCV.Point[][] pts, [CCode (array_length = false)] int[] npts, int contours, int is_closed, OpenCV.Scalar color, int thickness = 1, int line_type = 8, int shift = 0);
  11.         [CCode (cname = "cvSegmentImage", cheader_filename = "cvaux.h")]
  12.         public OpenCV.Sequence segment_image (OpenCV.Array dstarr, double canny_threshhold, double ffill_threshhold, OpenCV.Memory.Storage storage);
  13. +        [CCode (cname = "cvConvert")]
  14. +        public static void convert (OpenCV.Array src, OpenCV.Array dst);
  15.     }
  16.  
  17.     [SimpleType, CCode (cname = "CvBox2D", has_type_id = false)]
  18. @@ -444,9 +447,9 @@
  19.         public void complete_symmetric (int LtoR);
  20.         [CCode (cname = "cvIplDepth")]
  21.         public static int depth (int type);
  22. -       [CCode (cname = "cvGet")]
  23. +        [CCode (cname = "cvmGet")]
  24.         public double get (int row, int col);
  25. -       [CCode (cname = "cvSet")]
  26. +        [CCode (cname = "cvmSet")]
  27.         public void set (int row, int col, double value);
  28.         [CCode (cname = "cvSolveCubic")]
  29.         public int solve_cubic (OpenCV.Matrix roots);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement