MVE - Multi-View Environment mve-devel
Loading...
Searching...
No Matches
ransac.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2015, Simon Fuhrmann
3 * TU Darmstadt - Graphics, Capture and Massively Parallel Computing
4 * All rights reserved.
5 *
6 * This software may be modified and distributed under the terms
7 * of the BSD 3-Clause license. See the LICENSE.txt file for details.
8 */
9
10#ifndef SFM_RANSAC_HEADER
11#define SFM_RANSAC_HEADER
12
13#include "sfm/defines.h"
14
16
31int
32compute_ransac_iterations (double inlier_ratio,
33 int num_samples,
34 double desired_success_rate = 0.99);
35
37
38#endif /* SFM_RANSAC_HEADER */
int compute_ransac_iterations(double inlier_ratio, int num_samples, double desired_success_rate)
The function returns the required number of iterations for a desired RANSAC success rate.
Definition ransac.cc:18
#define SFM_NAMESPACE_END
Definition defines.h:14
#define SFM_NAMESPACE_BEGIN
Definition defines.h:13