Skip to content

Commit c5abac5

Browse files
committed
update
1 parent 28ab3fe commit c5abac5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

estimator.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ def __init__(self, model_path, net, inp_dim=224):
3232

3333
def addlayer(self, image):
3434
h, w = image.shape[:2]
35-
x = np.arange(0, w)
36-
y = np.arange(0, h)
35+
# todo retraining model
36+
x = np.arange(0, h)
37+
y = np.arange(0, w)
3738
x, y = np.meshgrid(x, y)
3839
x = x[:,:, np.newaxis]
3940
y = y[:,:, np.newaxis]

0 commit comments

Comments
 (0)