Skip to content

Commit

Permalink
move dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
LareinaM committed Sep 20, 2023
1 parent decbd7d commit 8ee4144
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 1 addition & 2 deletions mmpose/datasets/datasets/hand/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Copyright (c) OpenMMLab. All rights reserved.
from .coco_wholebody_hand_dataset import CocoWholeBodyHandDataset
from .freihand_dataset import FreiHandDataset
from .interhand_3d_dataset import InterHand3DDataset
from .onehand10k_dataset import OneHand10KDataset
from .panoptic_hand2d_dataset import PanopticHand2DDataset
from .rhd2d_dataset import Rhd2DDataset

__all__ = [
'OneHand10KDataset', 'FreiHandDataset', 'PanopticHand2DDataset',
'Rhd2DDataset', 'CocoWholeBodyHandDataset', 'InterHand3DDataset'
'Rhd2DDataset', 'CocoWholeBodyHandDataset'
]
4 changes: 4 additions & 0 deletions mmpose/datasets/datasets/hand3d/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (c) OpenMMLab. All rights reserved.
from .interhand_3d_dataset import InterHand3DDataset

__all__ = ['InterHand3DDataset']
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import numpy as np

from mmpose.datasets.datasets.hand import InterHand3DDataset
from mmpose.datasets.datasets.hand3d import InterHand3DDataset


class TestInterHand3DDataset(TestCase):
Expand Down

0 comments on commit 8ee4144

Please sign in to comment.