Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aliby-mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Swain Lab
aliby
aliby-mirror
Commits
535287a2
Commit
535287a2
authored
2 years ago
by
Alán Muñoz
Browse files
Options
Downloads
Patches
Plain Diff
refactor/docs(utils): move and autodoc stretch_img
parent
c6b448f4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/aliby/tile/traps.py
+0
-15
0 additions, 15 deletions
src/aliby/tile/traps.py
src/aliby/utils/imageViewer.py
+32
-0
32 additions, 0 deletions
src/aliby/utils/imageViewer.py
with
32 additions
and
15 deletions
src/aliby/tile/traps.py
+
0
−
15
View file @
535287a2
...
...
@@ -227,18 +227,3 @@ def identify_trap_locations(
exclude_border
=
(
trap_size
//
3
),
)
return
coordinates
###############################################################
# functions below here do not appear to be used any more
###############################################################
def
stretch_image
(
image
):
# FIXME Used in aliby.utils.imageViewer
image
=
((
image
-
image
.
min
())
/
(
image
.
max
()
-
image
.
min
()))
*
255
minval
=
np
.
percentile
(
image
,
2
)
maxval
=
np
.
percentile
(
image
,
98
)
image
=
np
.
clip
(
image
,
minval
,
maxval
)
image
=
(
image
-
minval
)
/
(
maxval
-
minval
)
return
image
This diff is collapsed.
Click to expand it.
src/aliby/utils/imageViewer.py
+
32
−
0
View file @
535287a2
...
...
@@ -405,3 +405,35 @@ def concat_pad(a: np.array, width, nrows):
axis
=
1
,
)
)
def
stretch_image
(
image
):
"""
Performs contrast stretching on an input image.
This function takes an array-like input image and enhances its contrast by adjusting
the dynamic range of pixel values. It first scales the pixel values between 0 and 255,
then clips the values that are below the 2nd percentile or above the 98th percentile.
Finally, the pixel values are scaled to the range between 0 and 1.
Parameters
----------
image : array-like
Input image.
Returns
-------
stretched : ndarray
Contrast-stretched version of the input image.
Examples
--------
FIXME: Add docs.
FIXME: GTP-generated. Confirm manually.
"""
image
=
((
image
-
image
.
min
())
/
(
image
.
max
()
-
image
.
min
()))
*
255
minval
=
np
.
percentile
(
image
,
2
)
maxval
=
np
.
percentile
(
image
,
98
)
image
=
np
.
clip
(
image
,
minval
,
maxval
)
image
=
(
image
-
minval
)
/
(
maxval
-
minval
)
return
image
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