Skip to content

Scaling Issue #13

Open
Open
@alfialdo

Description

@alfialdo

The stackImages() function didn't scale the image even after the 'scale' parameter being specified.

Just change this line:

sizeW= imgArray[0][0].shape[1]
sizeH = imgArray[0][0].shape[0]

To:

sizeW= int(imgArray[0][0].shape[1] * scale)
sizeH = int(imgArray[0][0].shape[0] * scale)

and remove the other scale variables

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