[413088]: / man / getRcppAutomatedRegistration.Rd

Download this file

50 lines (38 with data), 1.3 kB

 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/registration.R
\name{getRcppAutomatedRegistration}
\alias{getRcppAutomatedRegistration}
\title{getRcppAutomatedRegistration}
\usage{
getRcppAutomatedRegistration(
ref_image,
query_image,
GOOD_MATCH_PERCENT = 0.15,
MAX_FEATURES = 500,
invert_query = FALSE,
invert_ref = FALSE,
flipflop_query = "None",
flipflop_ref = "None",
rotate_query = "0",
rotate_ref = "0",
matcher = "FLANN",
method = "Homography"
)
}
\arguments{
\item{ref_image}{reference image}
\item{query_image}{query image}
\item{GOOD_MATCH_PERCENT}{the percentage of good matching keypoints, used by "Brute force" method}
\item{MAX_FEATURES}{maximum number of detected features, i.e. keypoints, used by "Brute force" method}
\item{invert_query}{invert query image?}
\item{invert_ref}{invert reference image}
\item{flipflop_query}{flip or flop the query image}
\item{flipflop_ref}{flip or flop the reference image}
\item{rotate_query}{rotation of query image}
\item{rotate_ref}{rotation of reference image}
\item{matcher}{the matching method for landmarks/keypoints FLANN or BRUTE-FORCE}
\item{method}{the automated registration method, Homography or Homography+TPS}
}
\description{
Automated registration workflos with Rcpp
}