Skip to content

Commit

Permalink
Adds ImageBinarization to Images.jl (#1030)
Browse files Browse the repository at this point in the history
* Adds ImageBinarization to Images.jl

* Update UnitTest.yml

* Update Project.toml

---------

Co-authored-by: Tim Holy <tim.holy@gmail.com>
  • Loading branch information
ashwani-rathee and timholy authored Jul 20, 2023
1 parent b0592ea commit e5857a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/UnitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1.3', '1', 'nightly']
julia-version: ['1.6', '1', 'nightly']
os: [ubuntu-latest]
arch: [x64]
include:
Expand Down
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name = "Images"
uuid = "916415d5-f1e6-5110-898d-aaa5f9f070e0"
version = "0.25.3"
version = "0.26.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
Graphics = "a2bd30eb-e257-5431-a919-1863eab51364"
ImageAxes = "2803e5a7-5153-5ecf-9a86-9b4c37f5f5ac"
ImageBase = "c817782e-172a-44cc-b673-b171935fbb9e"
ImageBinarization = "cbc4b850-ae4b-5111-9e64-df94c024a13d"
ImageContrastAdjustment = "f332f351-ec65-5f6a-b3d1-319c6670881a"
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
ImageDistances = "51556ac3-7006-55f5-8cb3-34580c88182d"
Expand Down Expand Up @@ -35,6 +36,7 @@ FileIO = "1"
Graphics = "0.4, 1.0"
ImageAxes = "0.6.9"
ImageBase = "0.1.5"
ImageBinarization = "^0.2"
ImageContrastAdjustment = "0.3.3"
ImageCore = "0.9.3"
ImageDistances = "0.2.5"
Expand All @@ -54,7 +56,7 @@ StaticArrays = "0.8, 0.9, 0.10, 0.11, 0.12, 1.0"
StatsBase = "0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.30, 0.31, 0.32, 0.33, 0.34"
Suppressor = "0.2"
TiledIteration = "0.2, 0.3, 0.4"
julia = "1.3"
julia = "1.6"

[extras]
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
Expand Down
1 change: 1 addition & 0 deletions src/Images.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ using IndirectArrays, ImageCore.MappedArrays

const is_little_endian = ENDIAN_BOM == 0x04030201 # CHECKME(johnnychen94): is this still used?

@reexport using ImageBinarization
@reexport using ImageTransformations
@reexport using ImageAxes
@reexport using ImageMetadata
Expand Down

0 comments on commit e5857a5

Please sign in to comment.