Skip to content

Commit f0f6c2f

Browse files
authored
Get MappedArrays via ImageCore (#192)
Avoids the need for a [compat] bound
1 parent 19dcc5d commit f0f6c2f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
1313
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
1414
ImageMetadata = "bc367c6b-8a6b-528e-b4bd-a4b897500b49"
1515
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
16-
MappedArrays = "dbb5928d-eab1-5f90-85c2-b9b0edb7c900"
1716
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1817
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1918
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
@@ -30,7 +29,6 @@ FFTViews = "0.3"
3029
FFTW = "0.3, 1"
3130
ImageCore = "0.8.1"
3231
ImageMetadata = "0.9"
33-
MappedArrays = "0.2"
3432
OffsetArrays = "1.1"
3533
Requires = "0.5, 1.0"
3634
StaticArrays = "0.10, 0.11, 0.12"

src/ImageFiltering.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
module ImageFiltering
22

33
using FFTW
4-
using ImageCore, MappedArrays, FFTViews, OffsetArrays, StaticArrays, ComputationalResources, TiledIteration
4+
using ImageCore, FFTViews, OffsetArrays, StaticArrays, ComputationalResources, TiledIteration
5+
# Where possible we avoid a direct dependency to reduce the number of [compat] bounds
6+
using ImageCore.MappedArrays
57
using Statistics, LinearAlgebra
68
using ColorVectorSpace # for filtering RGB arrays
79
using Base: Indices, tail, fill_to_length, @pure, depwarn, @propagate_inbounds

0 commit comments

Comments
 (0)