Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
GeoSentinel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mario Chirinos Colunga
GeoSentinel
Commits
ae947d57
Commit
ae947d57
authored
May 27, 2018
by
Mario Chirinos Colunga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rgb update
parent
6fe107de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
29 deletions
+10
-29
productToRGBJPG.sh
tools/productToRGBJPG.sh
+10
-29
No files found.
tools/productToRGBJPG.sh
View file @
ae947d57
#!/bin/sh
#!/bin/sh
PRODCUTSDIR
=
$1
#Products directory
JP2DIR
=
$2
#JP2 Directory
WINDOW
=
$3
#Crop Window
BASEDIR
=
$1
cd
$PRODCUTSDIR
OUTDIR
=
$2
count
=
1
ext
=
.jpg
cd
$BASEDIR
for
f
in
$(
find
.
-type
f
-name
'*.zip'
)
for
f
in
$(
find
.
-type
f
-name
'*.zip'
)
do
do
filepattern
=
$(
echo
$f
|
cut
-d
"_"
-f6
)
"_"
$(
echo
$f
|
cut
-d
"_"
-f3
)
"_B"
filepattern
=
$(
echo
$f
|
cut
-d
"_"
-f6
)
"_"
$(
echo
$f
|
cut
-d
"_"
-f3
)
"_B"
filename
=
$
OUT
DIR$filepattern
filename
=
$
JP2
DIR$filepattern
echo
$filename
echo
$filename
if
[
!
-e
$filename
"02.jp2"
-o
!
-e
$filename
"03.jp2"
-o
!
-e
$filename
"04.jp2"
]
;
then
if
[
!
-e
$filename
"02.jp2"
-o
!
-e
$filename
"03.jp2"
-o
!
-e
$filename
"04.jp2"
]
;
then
unzip
-n
-j
$f
*
B02.jp2
*
B03.jp2
*
B04.jp2
-d
$
OUT
DIR
unzip
-n
-j
$f
*
B02.jp2
*
B03.jp2
*
B04.jp2
-d
$
JP2
DIR
else
else
echo
PASS
$f
echo
PASS
$f
fi
fi
cd
$
OUT
DIR
cd
$
JP2
DIR
red
=
$(
ls
$filepattern
"04.jp2"
-t
|head
-1
)
red
=
$(
ls
$filepattern
"04.jp2"
-t
|head
-1
)
green
=
$(
ls
$filepattern
"03.jp2"
-t
|head
-1
)
green
=
$(
ls
$filepattern
"03.jp2"
-t
|head
-1
)
blue
=
$(
ls
$filepattern
"02.jp2"
-t
|head
-1
)
blue
=
$(
ls
$filepattern
"02.jp2"
-t
|head
-1
)
...
@@ -28,18 +26,6 @@ do
...
@@ -28,18 +26,6 @@ do
echo
"gre-"
$green
echo
"gre-"
$green
echo
"blu-"
$blue
echo
"blu-"
$blue
# if [ ! -e $filepattern"04.jpg" ]; then
# gdal_translate -projwin $3 -projwin_srs WGS84 -ot Byte -scale 0 4096 0 255 -of JPEG $red $filepattern"04.jpg"
# fi
# if [ ! -e $filepattern"03.jpg" ]; then
# gdal_translate -projwin $3 -projwin_srs WGS84 -ot Byte -scale 0 4096 0 255 -of JPEG $green $filepattern"03.jpg"
# fi
# if [ ! -e $filepattern"02.jpg" ]; then
# gdal_translate -projwin $3 -projwin_srs WGS84 -ot Byte -scale 0 4096 0 255 -of JPEG $blue $filepattern"02.jpg"
# fi
if
[
!
-d
"rgb"
]
;
then
if
[
!
-d
"rgb"
]
;
then
mkdir
rgb
mkdir
rgb
fi
fi
...
@@ -47,14 +33,11 @@ do
...
@@ -47,14 +33,11 @@ do
fileout1
=
$(
echo
$filepattern
|
cut
-d
"_"
-f1
)
fileout1
=
$(
echo
$filepattern
|
cut
-d
"_"
-f1
)
fileout2
=
$(
echo
$filepattern
|
cut
-d
"_"
-f2
)
fileout2
=
$(
echo
$filepattern
|
cut
-d
"_"
-f2
)
# convert $filepattern"04.jpg" $filepattern"03.jpg" $filepattern"02.jpg" -resize 640x480\! -combine video/$fileout2"_"$fileout1".jpg"
if
[
!
-e
rgb/
$fileout2
"_"
$fileout1
".jp2"
]
;
then
if
[
!
-e
rgb/
$fileout2
"_"
$fileout1
".jp2"
]
;
then
gdal_merge.py
-separate
-co
PHOTOMETRIC
=
RGB
-o
rgb/
$fileout2
"_"
$fileout1
".jp2"
$filepattern
"04.jp2"
$filepattern
"03.jp2"
$filepattern
"02.jp2"
gdal_merge.py
-separate
-co
PHOTOMETRIC
=
RGB
-o
rgb/
$fileout2
"_"
$fileout1
".jp2"
$filepattern
"04.jp2"
$filepattern
"03.jp2"
$filepattern
"02.jp2"
fi
fi
if
[
!
-d
"video"
]
;
then
if
[
!
-d
"video"
]
;
then
mkdir
video
mkdir
video
fi
fi
...
@@ -65,12 +48,10 @@ do
...
@@ -65,12 +48,10 @@ do
convert video/
$fileout2
"_"
$fileout1
".jpg"
-resize
640x480
\!
video/
$fileout2
"_"
$fileout1
".jpg"
convert video/
$fileout2
"_"
$fileout1
".jpg"
-resize
640x480
\!
video/
$fileout2
"_"
$fileout1
".jpg"
fi
fi
cd
$PRODCUTSDIR
cd
..
done
done
cd
out/video
cd
$JP2DIR
"/rgb/video"
ffmpeg
-i
%
*
.jpg
-c
:v libx264
-vf
fps
=
10
-pix_fmt
yuvj422p
out
.mp4
ffmpeg
-i
%
*
.jpg
-c
:v libx264
-vf
fps
=
10
-pix_fmt
yuvj422p
rgb
.mp4
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment