A 3D Global Registration Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
src
gr
utils
disablewarnings.h
Go to the documentation of this file.
1
// Copyright 2016 Nicolas Mellado
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
//
15
// -------------------------------------------------------------------------- //
16
//
17
// Authors: Nicolas Mellado
18
//
19
// An implementation of the 4-points Congruent Sets (4PCS) algorithm presented
20
// in:
21
//
22
// 4-points Congruent Sets for Robust Surface Registration
23
// Dror Aiger, Niloy J. Mitra, Daniel Cohen-Or
24
// ACM SIGGRAPH 2008 and ACM Transaction of Graphics.
25
//
26
// Given two sets of points in 3-space, P and Q, the algorithm applies RANSAC
27
// in roughly O(n^2) time instead of O(n^3) for standard RANSAC, using an
28
// efficient method based on invariants, to find the set of all 4-points in Q
29
// that can be matched by rigid transformation to a given set of 4-points in P
30
// called a base. This avoids the need to examine all sets of 3-points in Q
31
// against any base of 3-points in P as in standard RANSAC.
32
// The algorithm can use colors and normals to speed-up the matching
33
// and to improve the quality. It can be easily extended to affine/similarity
34
// transformation but then the speed-up is smaller because of the large number
35
// of congruent sets. The algorithm can also limit the range of transformations
36
// when the application knows something on the initial pose but this is not
37
// necessary in general (though can speed the runtime significantly).
38
39
#
ifndef
_OPENGR_UTILS_DISABLE_WIN_H_
40
#
define
_OPENGR_UTILS_DISABLE_WIN_H_
41
42
#
ifdef
_MSC_VER
43
// disable warnings:
44
// C4244: conversion from 'double' to 'float'
45
// C4267: conversion from 'size_t' to 'int'
46
// C4305: truncation from 'double' to 'float'
47
#
pragma
warning
(
disable
:
4244 4267 4305
)
48
#
endif
49
50
#
endif
// _OPENGR_UTILS_DISABLE_WIN_H_
Generated on Sat Aug 15 2020 10:04:04 for OpenGR by
1.8.11