You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FileIO has changed to not install IO backends for users, hence we need to install Image IO backends manually. The new docs explain this to new beginners. It also introduces the brand new ImageIO backend.
For loading image files that might already be on your computer, you should
45
-
use the [FileIO
46
-
package](https://github.com/JuliaIO/FileIO.jl):
60
+
When testing ideas or just following along with the documentation, it can be useful to have some
61
+
images to work with. The [TestImages.jl](https://github.com/JuliaImages/TestImages.jl) package
62
+
bundles several "standard" images for you.
47
63
48
64
```julia
49
-
using FileIO
50
-
img =load("myphoto.png")
65
+
(v1.0) pkg> add TestImages
51
66
```
52
67
53
-
This should load the image for you, possibly prompting you to install
54
-
an input/output package appropriate for your platform.
68
+
To load one of the images from this package, say
69
+
70
+
```julia
71
+
using TestImages
72
+
# backends such as ImageMagick are required
73
+
img =testimage("mandrill")
74
+
```
55
75
56
76
## Displaying images
57
77
@@ -62,17 +82,13 @@ display automatically:
62
82
63
83

64
84
65
-
Users of the Julia command-line interface (REPL) can install the [ImageView](https://github.com/timholy/ImageView.jl) package:
66
-
67
-
```julia
68
-
using TestImages, Images, ImageView
69
-
img =testimage("mandrill")
70
-
imshow(img)
71
-
```
85
+
Currently there're five julia packages can be used to display an image:
72
86
73
-
`ImageView` includes interactive features (panning/zooming, contrast
74
-
adjustment, playing movies, labeling, etc.) and may be of interest
75
-
even for users of graphical environments.
87
+
*[`ImageShow`](https://github.com/JuliaImages/ImageShow.jl) is used to support image display in Juno and IJulia. This happens automatically if you are `using Images`.
88
+
*[`ImageInTerminal`](https://github.com/JuliaImages/ImageInTerminal.jl) is used to support image display in terminal.
89
+
*[`ImageView`](https://github.com/JuliaImages/ImageView.jl) is an image display GUI. (For OSX and Windows platforms, Julia at least `v1.3` is required)
90
+
*[`Plots`](https://github.com/JuliaPlots/Plots.jl) maintained by JuliaPlots is a general plotting package that support image display.
91
+
*[`Makie`](https://github.com/JuliaPlots/Makie.jl) is also maintained by JuliaPlots but provides rich interactive functionality.
Copy file name to clipboardExpand all lines: docs/src/quickstart.md
-10Lines changed: 0 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -301,16 +301,6 @@ it straightforward to keep track of the correspondence between
301
301
location across multiple images. More information can be found in
302
302
[Keeping track of location with unconventional indices](@ref).
303
303
304
-
## Display
305
-
306
-
Currently there're five julia packages can be used to display an image:
307
-
308
-
*[`ImageShow`](https://github.com/JuliaImages/ImageShow.jl) is used to support image display in Juno and IJulia. This is automatically used when you use `Images`.
309
-
*[`ImageInTerminal`](https://github.com/JuliaImages/ImageInTerminal.jl) is used to support image display in terminal.
310
-
*[`ImageView`](https://github.com/JuliaImages/ImageView.jl) is an image display GUI. (For OSX and Windows platforms, Julia at least `v1.3` is required)
311
-
*[`Plots`](https://github.com/JuliaPlots/Plots.jl) maintained by JuliaPlots is a general plotting package that support image display.
312
-
*[`Makie`](https://github.com/JuliaPlots/Makie.jl) is also maintained by JuliaPlots but provides rich interactive functionality.
313
-
314
304
## Examples of usage
315
305
316
306
If you feel ready to get started, see the [Demonstrations](@ref) page for inspiration.
0 commit comments