File: cpclean.pod

package info (click to toggle)
hugin 2024.0.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 32,568 kB
  • sloc: cpp: 127,783; ansic: 6,263; python: 1,156; perl: 701; xml: 150; sh: 64; makefile: 29
file content (62 lines) | stat: -rwxr-xr-x 1,271 bytes parent folder | download | duplicates (3)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
=head1 NAME

cpclean - Remove wrong control points by statistical methods

=head1 SYNOPSIS

B<cpclean> [options] I<input.pto>

=head1 DESCRIPTION

B<cpclean> uses statistical methods to remove wrong control points.

Step 1 optimises all images pairs, calculates for each pair mean 
and standard deviation and removes all control points 
with error bigger than mean+n*sigma.

Step 2 optimises the whole panorama, calculates mean and standard deviation
for all control points and removes all control points with error
bigger than mean+n*sigma.

=head1 OPTIONS

=over

=item B<--output|-o> output.pto

Output Hugin PTO file. Default: '<filename>_clean.pto'.

=item B<--max-distance|-n> num

distance factor for checking (default: 2)
(cps with an error > mean + this factor*sigma will be removed)

=item B<--pairwise-checking|-p>

do only image pair cp checking (skip step 2)

=item B<--whole-pano-checking|-w>

do only whole panorama checking (skip step 1)

=item B<--dont-optimize|-s>

skip optimisation step when checking the whole panorama

=item B<--check-line-cp|-l>

also include line control points for calculation and filtering in step 2

=item B<--verbose|-v>

verbose output during optimisation

=item B<--help|-h>

shows help

=back

=head1 AUTHORS

Thomas Modes