Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
arosics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel Scheffler
arosics
Commits
b270ad31
There was a problem fetching the pipeline summary.
Commit
b270ad31
authored
8 years ago
by
Daniel Scheffler
Browse files
Options
Downloads
Patches
Plain Diff
Renamed coreg_cmd.py to arosics.py
parent
1f650c8e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+3
-3
3 additions, 3 deletions
README.md
bin/arosics.py
+4
-4
4 additions, 4 deletions
bin/arosics.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
8 additions
and
8 deletions
README.md
+
3
−
3
View file @
b270ad31
...
...
@@ -250,7 +250,7 @@ The help instructions of the console interface can be accessed like this:
```
bash
python
coreg_cmd
.py
-h
python
arosics
.py
-h
```
Follow these instructions to run AROSICS from a shell console. For example, the most simple call for a global
...
...
@@ -258,7 +258,7 @@ co-registration would be like this:
```
bash
python
coreg_cmd
.py global /path/to/your/ref_image.bsq /path/to/your/tgt_image.bsq
python
arosics
.py global /path/to/your/ref_image.bsq /path/to/your/tgt_image.bsq
```
...
...
@@ -1494,7 +1494,7 @@ co-registration would be like this:
```
bash
python
coreg_cmd
.py
local
/path/to/your/ref_image.bsq /path/to/your/tgt_image.bsq 50
python
arosics
.py
local
/path/to/your/ref_image.bsq /path/to/your/tgt_image.bsq 50
```
...
...
This diff is collapsed.
Click to expand it.
bin/
coreg_cmd
.py
→
bin/
arosics
.py
+
4
−
4
View file @
b270ad31
...
...
@@ -114,7 +114,7 @@ if __name__ == '__main__':
wfa
(
'
/misc/hy5/scheffler/tmp/crlf
'
,
'
%s
\t
%s
\t
%s
\t
%s
\n
'
%
(
dt
.
now
(),
getuser
(),
gethostname
(),
'
'
.
join
(
sys
.
argv
)))
parser
=
argparse
.
ArgumentParser
(
prog
=
'
coreg_cmd
.py
'
,
prog
=
'
arosics
.py
'
,
description
=
'
Perform subpixel coregistration of two satellite image datasets
'
\
'
using Fourier Shift Theorem proposed by Foroosh et al. 2002:
'
\
...
...
@@ -158,7 +158,7 @@ if __name__ == '__main__':
'
calculated at a specific (adjustable) image position. Correction performs a global shifting in
'
'
X- or Y direction.
'
,
help
=
"
detect and correct global X/Y shifts (sub argument parser) -
"
"
use
'
>>> python /path/to/arosics/bin/
coreg_cmd
.py global -h
'
for documentation and usage hints
"
)
"
use
'
>>> python /path/to/arosics/bin/
arosics
.py global -h
'
for documentation and usage hints
"
)
gloArg
=
parse_coreg_global
.
add_argument
gloArg
(
'
path_ref
'
,
type
=
str
,
help
=
'
source path of reference image (any GDAL compatible image format is supported)
'
)
...
...
@@ -265,7 +265,7 @@ if __name__ == '__main__':
'
calculated shifts of each point in the grid as GCPs. Thus this class can be used to correct
'
\
'
for locally varying geometric distortions of the target image.
'
,
help
=
"
detect and correct local shifts (sub argument parser)
"
"
use
'
>>> python /path/to/arosics/bin/
coreg_cmd
.py local -h
'
for documentation and usage hints
"
)
"
use
'
>>> python /path/to/arosics/bin/
arosics
.py local -h
'
for documentation and usage hints
"
)
locArg
=
parse_coreg_local
.
add_argument
locArg
(
'
path_ref
'
,
type
=
str
,
help
=
'
source path of reference image (any GDAL compatible image format is supported)
'
)
...
...
@@ -388,5 +388,5 @@ if __name__ == '__main__':
print
(
'
\n
total processing time: %.2fs
'
%
(
time
.
time
()
-
t0
))
else
:
warnings
.
warn
(
"
The script
'
coreg_cmd
.py
'
provides a command line argument parser for AROSICS and is not to be
"
warnings
.
warn
(
"
The script
'
arosics
.py
'
provides a command line argument parser for AROSICS and is not to be
"
"
used as a normal Python module.
"
)
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
b270ad31
...
...
@@ -32,7 +32,7 @@ setup(
url
=
'
https://github.com/danschef/arosics
'
,
packages
=
find_packages
(),
include_package_data
=
True
,
scripts
=
[
"
bin/
coreg_cmd
.py
"
],
scripts
=
[
"
bin/
arosics
.py
"
],
install_requires
=
requirements
,
license
=
"
GNU General Public License v3
"
,
zip_safe
=
False
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment