/* * Copyright (c) 2016 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include #include #include #include #include #include "third_party/fastfeat/fast.h" #include "av1/encoder/corner_detect.h" // Fast_9 wrapper #define FAST_BARRIER 40 int fast_corner_detect(unsigned char *buf, int width, int height, int stride, int *points, int max_points) { int num_points; xy *const frm_corners_xy = fast9_detect_nonmax(buf, width, height, stride, FAST_BARRIER, &num_points); num_points = (num_points <= max_points ? num_points : max_points); if (num_points > 0 && frm_corners_xy) { memcpy(points, frm_corners_xy, sizeof(*frm_corners_xy) * num_points); free(frm_corners_xy); return num_points; } free(frm_corners_xy); return 0; }