blob: 535d2faed1872e7c470d94920f866f327840c5ad [file] [log] [blame]
Sarah Parker4dc0f1b2016-08-09 17:40:53 -07001/*
Yaowu Xubde4ac82016-11-28 15:26:06 -08002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Sarah Parker4dc0f1b2016-08-09 17:40:53 -07003 *
Yaowu Xubde4ac82016-11-28 15:26:06 -08004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Sarah Parker4dc0f1b2016-08-09 17:40:53 -070010 */
James Zerne1cbb132018-08-22 14:10:36 -070011#ifndef AOM_AV1_ENCODER_CORNER_MATCH_H_
12#define AOM_AV1_ENCODER_CORNER_MATCH_H_
Sarah Parker4dc0f1b2016-08-09 17:40:53 -070013
14#include <stdio.h>
15#include <stdlib.h>
16#include <memory.h>
17
David Barkeree674322017-05-10 15:43:02 +010018#define MATCH_SZ 13
19#define MATCH_SZ_BY2 ((MATCH_SZ - 1) / 2)
20#define MATCH_SZ_SQ (MATCH_SZ * MATCH_SZ)
21
Sarah Parker4dc0f1b2016-08-09 17:40:53 -070022typedef struct {
David Barker15338d52017-02-13 15:30:59 +000023 int x, y;
24 int rx, ry;
Sarah Parkerf9a961c2016-09-06 11:25:04 -070025} Correspondence;
Sarah Parker4dc0f1b2016-08-09 17:40:53 -070026
27int determine_correspondence(unsigned char *frm, int *frm_corners,
28 int num_frm_corners, unsigned char *ref,
29 int *ref_corners, int num_ref_corners, int width,
30 int height, int frm_stride, int ref_stride,
David Barker15338d52017-02-13 15:30:59 +000031 int *correspondence_pts);
Sarah Parker4dc0f1b2016-08-09 17:40:53 -070032
James Zerne1cbb132018-08-22 14:10:36 -070033#endif // AOM_AV1_ENCODER_CORNER_MATCH_H_