Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamdasn committed Apr 15, 2021
1 parent ca3057d commit d539528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import numpy as np
import cv2
from im2dhisteq import im2dhisteq

def imresize(img, wr=200, hr=None): # This is just for imshow-ing images with titles
def imresize(img, wr=500, hr=None): # This is just for imshow-ing images with titles
[ h, w] = img.shape
hr = (h*wr)//w if not hr else hr
img_resized = cv2.resize(img, dsize=(wr, hr))
Expand Down

0 comments on commit d539528

Please sign in to comment.