Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraving committed Apr 23, 2020
2 parents d3f17ca + 94b8390 commit c4f054b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepposekit/io/BaseGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_images(self, indexes):
Takes a list or array of indexes corresponding
to image-keypoint pairs in the dataset.
Returns a numpy array of images with the shape:
(1, height, width, n_channels)
(n_samples, height, width, n_channels)
"""
raise NotImplementedError()

Expand All @@ -83,7 +83,7 @@ def get_keypoints(self, indexes):
Takes a list or array of indexes corresponding to
image-keypoint pairs in the dataset.
Returns a numpy array of keypoints with the shape:
(1, n_keypoints, 2), where 2 is the x,y coordinates
(n_samples, n_keypoints, 2), where 2 is the x,y coordinates
"""
raise NotImplementedError()

Expand Down

0 comments on commit c4f054b

Please sign in to comment.