Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Commit

Permalink
fix test_resize_keypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyu2172 committed Mar 16, 2017
1 parent 907d4d5 commit d539be3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/transforms_tests/keypoint_tests/test_resize_keypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
from chainercv.transforms import resize_keypoint


class TestRandomCrop(unittest.TestCase):
class TestResizeKeypoint(unittest.TestCase):

def test_random_crop(self):
def test_resize_keypoint(self):
keypoint = np.random.uniform(
low=0., high=32., size=(12, 3))
low=0., high=32., size=(12, 2))

out = resize_keypoint(
keypoint, input_shape=(32, 32),
Expand Down

0 comments on commit d539be3

Please sign in to comment.