Sarah Parker | 4dc0f1b | 2016-08-09 17:40:53 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | bde4ac8 | 2016-11-28 15:26:06 -0800 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Sarah Parker | 4dc0f1b | 2016-08-09 17:40:53 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | bde4ac8 | 2016-11-28 15:26:06 -0800 | [diff] [blame] | 4 | * 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 Parker | 4dc0f1b | 2016-08-09 17:40:53 -0700 | [diff] [blame] | 10 | */ |
James Zern | e1cbb13 | 2018-08-22 14:10:36 -0700 | [diff] [blame] | 11 | #ifndef AOM_AV1_ENCODER_CORNER_MATCH_H_ |
| 12 | #define AOM_AV1_ENCODER_CORNER_MATCH_H_ |
Sarah Parker | 4dc0f1b | 2016-08-09 17:40:53 -0700 | [diff] [blame] | 13 | |
| 14 | #include <stdio.h> |
| 15 | #include <stdlib.h> |
| 16 | #include <memory.h> |
| 17 | |
David Barker | ee67432 | 2017-05-10 15:43:02 +0100 | [diff] [blame] | 18 | #define MATCH_SZ 13 |
| 19 | #define MATCH_SZ_BY2 ((MATCH_SZ - 1) / 2) |
| 20 | #define MATCH_SZ_SQ (MATCH_SZ * MATCH_SZ) |
| 21 | |
Sarah Parker | 4dc0f1b | 2016-08-09 17:40:53 -0700 | [diff] [blame] | 22 | typedef struct { |
David Barker | 15338d5 | 2017-02-13 15:30:59 +0000 | [diff] [blame] | 23 | int x, y; |
| 24 | int rx, ry; |
Sarah Parker | f9a961c | 2016-09-06 11:25:04 -0700 | [diff] [blame] | 25 | } Correspondence; |
Sarah Parker | 4dc0f1b | 2016-08-09 17:40:53 -0700 | [diff] [blame] | 26 | |
| 27 | int 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 Barker | 15338d5 | 2017-02-13 15:30:59 +0000 | [diff] [blame] | 31 | int *correspondence_pts); |
Sarah Parker | 4dc0f1b | 2016-08-09 17:40:53 -0700 | [diff] [blame] | 32 | |
James Zern | e1cbb13 | 2018-08-22 14:10:36 -0700 | [diff] [blame] | 33 | #endif // AOM_AV1_ENCODER_CORNER_MATCH_H_ |