예제 #1
0
 public SiftFeature(VlSiftKeypoint keypoint, SiftKeyPointOrientation[] keypointOrientations)
 {
     this.keypoint = keypoint;
     this.keypointOrientations = keypointOrientations;
 }
예제 #2
0
        public SiftKeyPointOrientation[] keypointOrientations; //关键点的方向及方向对应的描述

        #endregion Fields

        #region Constructors

        public SiftFeature(VlSiftKeypoint keypoint)
            : this(keypoint, null)
        {
        }
예제 #3
0
 public static extern int vl_sift_calc_keypoint_orientations(IntPtr f, double[] angles, ref VlSiftKeypoint k);
예제 #4
0
 public static extern void vl_sift_keypoint_init(IntPtr f, ref VlSiftKeypoint k, double x, double y, double sigma);
예제 #5
0
 public static extern void vl_sift_calc_keypoint_descriptor(IntPtr f, IntPtr descr, ref VlSiftKeypoint k, double angle);