Welcome to mirror list, hosted at ThFree Co, Russian Federation.

homography.h « intern « libmv « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbff480a3aa9a55130fe8742d9cd643510b22624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2011 Blender Foundation. All rights reserved. */

#ifndef LIBMV_C_API_HOMOGRAPHY_H_
#define LIBMV_C_API_HOMOGRAPHY_H_

#ifdef __cplusplus
extern "C" {
#endif

void libmv_homography2DFromCorrespondencesEuc(/* const */ double (*x1)[2],
                                              /* const */ double (*x2)[2],
                                              int num_points,
                                              double H[3][3]);

#ifdef __cplusplus
}
#endif

#endif  // LIBMV_C_API_HOMOGRAPHY_H_