JuliaImages / ImageBinarization.jl

A Julia package of algorithms for analyzing images and automatically binarizing them into background and foreground.
MIT License
35 stars 8 forks source link

Official documentation shows no information for algorithms contained in HistogramThresholding.jl #91

Closed Ickaser closed 2 years ago

Ickaser commented 2 years ago

I was looking for information on the Entropy binarization algorithm, and found the following:

https://zygmuntszpak.github.io/ImageBinarization.jl/stable/reference/

image

However, that documentation is visible here:

https://juliaimages.org/HistogramThresholding.jl/stable/

johnnychen94 commented 2 years ago

Thanks for catching this. This might be due to our Documentation CI issue. The latest package version is v0.2.8 while the documentation is still v0.2.3. I'll check it later today.

johnnychen94 commented 2 years ago

The issue here is that Documenter CI isn't triggered by new tag releases. A github action (TagBot CI) cannot trigger another github action (docs CI) unless ssh key is configured. See also the "TagBot & tagged versions" in https://juliadocs.github.io/Documenter.jl/stable/man/hosting/#GitHub-Actions

For instance, in https://github.com/johnnychen94/JpegTurbo.jl/actions/workflows/docs.yml, there are two docs CI triggered by tags:

action

@zygmuntszpak Because TagBot uses DOCUMENTER_KEY, can you verify that DOCUMENTER_KEY secret is correctly configured? If not, you might want to follow https://juliadocs.github.io/Documenter.jl/stable/man/hosting/#travis-ssh

johnnychen94 commented 2 years ago

closed by 900406f