-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds further installation and usage instructions #52
Conversation
Codecov Report
@@ Coverage Diff @@
## master #52 +/- ##
=======================================
Coverage 95.58% 95.58%
=======================================
Files 20 20
Lines 181 181
=======================================
Hits 173 173
Misses 8 8 Continue to review full report at Codecov.
|
@@ -17,7 +51,7 @@ image. The background and foreground will be automatically binarized. | |||
Let's see a simple demo: | |||
|
|||
```@example | |||
using TestImages, ImageBinarization, FileIO # hide |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- using TestImages, ImageBinarization, FileIO # hide
+ using TestImages, ImageBinarization
+ using FileIO # hide
FileIO
isn't required to load test images.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the suggestion.
docs/src/index.md
Outdated
@@ -6,6 +6,40 @@ A Julia package containing a number of algorithms for analyzing images and autom | |||
Depth = 2 | |||
``` | |||
|
|||
## Getting started | |||
This package is part of a wider Julia-based image processing | |||
[ecosystem](https://github.com/JuliaImages). If you are a starting out, then you |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A small typo :)
[ecosystem](https://github.com/JuliaImages). If you are a starting out, then you | |
[ecosystem](https://github.com/JuliaImages). If you are starting out, then you |
docs/src/index.md
Outdated
already installed some key packages. Notably, it assumes that you are able to | ||
load and display an image. Loading an image is facilitated through the | ||
[FileIO.jl](https://github.com/JuliaIO/FileIO.jl) package, which uses | ||
[QuartzImageIO.jl](https://github.com/JuliaIO/QuartzImageIO.jl) if you are on `MacOS`, and |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this line needs to be re-wrapped.
docs/src/index.md
Outdated
of `MacOS` are [unable to use](https://github.com/JuliaImages/ImageView.jl/issues/175) the ImageView package. | ||
|
||
As an alternative, one can display an image using the [Makie.jl](https://github.com/JuliaPlots/Makie.jl) plotting package. There is also the [ImageShow.jl](https://github.com/JuliaImages/ImageShow.jl) package which facilitates displaying images in `Jupyter` notebooks | ||
via [IJulia.jl](https://github.com/JuliaLang/IJulia.jl). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The two paragraphs above don't seem to be wrapped correctly. There are some line breaks, but not at the same length (~80 characters) used in the rest of the added text.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you
Also increases TOC depth so that users can click on links that take them directky to the description of individual algorithms.
c248477
to
acff2f7
Compare
WIP to address the request outlined in #51