Skip to content

skimage.transform.pyramid_expand #1

@rafafelixphd

Description

@rafafelixphd

skimage.transform.pyramid_expand(one_map, sigma=20,

Hi guys,

I think depending on your version of scikit-image the function pyramid_expand might require the flag multichannel

Hence:

                one_map = \
                    skimage.transform.pyramid_expand(one_map, sigma=20,
                                                     upscale=vis_size // att_sze)

Should become:

                one_map = \
                    skimage.transform.pyramid_expand(one_map, sigma=20,
                                                     upscale=vis_size // att_sze,
                                                     multichannel=True)

Hope this can be of some help to anyone that encounter an issue related to expanding all the channels.

Best wishes,

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions