Open
Description
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
Labels
No labels