Skip to content

Commit

Permalink
Fix Overflow Issue in CHS Modified (used in AAET) (#1)
Browse files Browse the repository at this point in the history
* fix(chs): mod-chs: fix bug due to datatype overflow

* docs(report image): re-generate report image

* ci(pyproject): bump to v0.0.3
  • Loading branch information
JoeyTeng committed Jul 15, 2023
1 parent a332197 commit a26660d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
Binary file modified docs/assets/report.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "awblib"
version = "0.0.2"
version = "0.0.3"
description = "A bunch of Automatic White-Balancing (AWB) Algorithm implementations"
authors = ["Joey Teng <[email protected]>"]
license = "Apache-2.0"
Expand Down
18 changes: 12 additions & 6 deletions src/awblib/chs.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,15 @@ def original_chs(
)
assert isinstance(high, Integer[Array, "3"])

_max: Integer[Array, "3"] = RGB_range[:, 1].astype(int)
_min: Integer[Array, "3"] = RGB_range[:, 0].astype(int)
assert isinstance(_max, Integer[Array, "3"])
assert isinstance(_min, Integer[Array, "3"])

# STAGE: Histogram Stretching
result: RGBImage
result = ((image - low) * (RGB_range[:, 1]) / (high - low) +
RGB_range[:, 0]).astype(int)
result = ((image - low) * _max / (high - low) + _min).astype(int)
result = jnp.clip(result, a_min=0, a_max=max_value - 1).astype(int)
assert isinstance(result, RGBImage)

return result
Expand Down Expand Up @@ -156,14 +161,15 @@ def modified_chs(
)
assert isinstance(high, Integer[Array, "3"])

a_max: Integer[Array, ""] = high.max() # A_max
a_min: Integer[Array, ""] = low.min() # A_min
a_max: Integer[Array, ""] = high.max().astype(int) # A_max
a_min: Integer[Array, ""] = low.min().astype(int) # A_min
assert isinstance(a_max, Integer[Array, ""])
assert isinstance(a_min, Integer[Array, ""])

# STAGE: Histogram Stretching
result: RGBImage
result = ((image - low) * (a_max) / (high - low) + a_min).astype(int)
result = ((image - low) * a_max / (high - low) + a_min).astype(int)
result = jnp.clip(result, a_min=0, a_max=max_value - 1).astype(int)
assert isinstance(result, RGBImage)

return result
Expand All @@ -184,7 +190,7 @@ def balance(

result: RGBImage
if modified:
result = modified_chs(image)
result = modified_chs(image, bit_depth=bit_depth)
else:
result = original_chs(image, bit_depth=bit_depth, RGB_range=RGB_range)
assert isinstance(result, RGBImage)
Expand Down

0 comments on commit a26660d

Please sign in to comment.