Skip to content

Commit c4f054b

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents d3f17ca + 94b8390 commit c4f054b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deepposekit/io/BaseGenerator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def get_images(self, indexes):
7474
Takes a list or array of indexes corresponding
7575
to image-keypoint pairs in the dataset.
7676
Returns a numpy array of images with the shape:
77-
(1, height, width, n_channels)
77+
(n_samples, height, width, n_channels)
7878
"""
7979
raise NotImplementedError()
8080

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

0 commit comments

Comments
 (0)