-
Notifications
You must be signed in to change notification settings - Fork 622
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
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels