Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
image-compression
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
Elphel
image-compression
Commits
671803c7
Commit
671803c7
authored
Jan 25, 2022
by
Nathaniel Callens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updates
parent
1918ec7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
.gitignore
.gitignore
+2
-1
compress_start.py
compress_start.py
+6
-2
No files found.
.gitignore
View file @
671803c7
...
...
@@ -2,4 +2,5 @@ __pycache__
/.project
/.pydevproject
attic
*.log
\ No newline at end of file
*.log
/compress_start.pyc
compress_start.py
View file @
671803c7
...
...
@@ -68,7 +68,10 @@ if __name__ == '__main__':
tiff3
.
append
(
os
.
path
.
join
(
scene
,
s
))
cameras
=
[
tiff0
,
tiff1
,
tiff2
,
tiff3
]
i
=
0
im
=
Image
.
open
(
tiff0
[
0
])
im
=
np
.
array
(
im
)[
1
:,:]
print
(
im
)
jj
=
0
fig
,
axs
=
plt
.
subplots
(
nrows
=
2
,
ncols
=
2
,
figsize
=
(
15
,
12
))
for
cam
,
ax
in
zip
(
cameras
,
axs
.
ravel
()):
diff
=
[]
...
...
@@ -88,7 +91,8 @@ if __name__ == '__main__':
surrounding
.
append
(
image
[
ind1
+
i
,
ind1
+
j
])
#Add the other 8 pixels to the list
diff
.
append
(
np
.
max
(
surrounding
)
-
np
.
min
(
surrounding
))
ax
.
hist
(
diff
)
i
+=
1
ax
.
set_title
(
f
"tiff {jj}"
)
jj
+=
1
plt
.
tight_layout
()
plt
.
show
()
...
...
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