Skip to content

use zeroarray as placeholder in colorview demo #152

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

Open
wants to merge 1 commit into
base: source
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/examples/spatial_transformation/image_diffview.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ plain_diffview = @. img - img_r
nothing #hide #md

# For gray images, a fancy trick is to fill each image into different RGB channels
# and make a RGB view
RGB_diffview = colorview(RGB, channelview(img), channelview(img_r), fill(0., size(img)))
# and make a RGB view. [`zeroarray`](@ref ImageCore.zeroarray) is a constant which
# serves as a placeholder to create a (virtual) all-zeros array of size that matches
# the other arguments.
RGB_diffview = colorview(RGB, channelview(img), channelview(img_r), zeroarray)
nothing #hide #md

# or convert the RGB view back to Gray image after that
Expand Down