
These are in response to a post-commit review in Ib6664df44090e8cfa4db9f2f9e0556931ccfe5c8 Change-Id: I1e07ccab18558dfdd996547a72a396abe02ed23d
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/*
|
|
* 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 <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <memory.h>
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
|
|
#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;
|
|
}
|