Switch to unified view

a b/man/getRcppAutomatedRegistration.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/registration.R
3
\name{getRcppAutomatedRegistration}
4
\alias{getRcppAutomatedRegistration}
5
\title{getRcppAutomatedRegistration}
6
\usage{
7
getRcppAutomatedRegistration(
8
  ref_image,
9
  query_image,
10
  GOOD_MATCH_PERCENT = 0.15,
11
  MAX_FEATURES = 500,
12
  invert_query = FALSE,
13
  invert_ref = FALSE,
14
  flipflop_query = "None",
15
  flipflop_ref = "None",
16
  rotate_query = "0",
17
  rotate_ref = "0",
18
  matcher = "FLANN",
19
  method = "Homography"
20
)
21
}
22
\arguments{
23
\item{ref_image}{reference image}
24
25
\item{query_image}{query image}
26
27
\item{GOOD_MATCH_PERCENT}{the percentage of good matching keypoints, used by "Brute force" method}
28
29
\item{MAX_FEATURES}{maximum number of detected features, i.e. keypoints, used by "Brute force" method}
30
31
\item{invert_query}{invert query image?}
32
33
\item{invert_ref}{invert reference image}
34
35
\item{flipflop_query}{flip or flop the query image}
36
37
\item{flipflop_ref}{flip or flop the reference image}
38
39
\item{rotate_query}{rotation of query image}
40
41
\item{rotate_ref}{rotation of reference image}
42
43
\item{matcher}{the matching method for landmarks/keypoints FLANN or BRUTE-FORCE}
44
45
\item{method}{the automated registration method, Homography or Homography+TPS}
46
}
47
\description{
48
Automated registration workflos with Rcpp
49
}