-
Notifications
You must be signed in to change notification settings - Fork 549
Expand file tree
/
Copy pathhomography.cpp
More file actions
28 lines (23 loc) · 945 Bytes
/
homography.cpp
File metadata and controls
28 lines (23 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************
* Copyright (c) 2015, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#include <af/array.h>
#include <af/vision.h>
#include "error.hpp"
namespace af {
void homography(array &H, int &inliers, const array &x_src, const array &y_src,
const array &x_dst, const array &y_dst,
const af_homography_type htype, const float inlier_thr,
const unsigned iterations, const af::dtype otype) {
af_array outH;
AF_THROW(af_homography(&outH, &inliers, x_src.get(), y_src.get(),
x_dst.get(), y_dst.get(), htype, inlier_thr,
iterations, otype));
H = array(outH);
}
} // namespace af