yewzijian / RPMNet

RPM-Net: Robust Point Matching using Learned Features (CVPR2020)
MIT License
344 stars 59 forks source link

shape_names.txt #39

Closed KuZongFan closed 8 months ago

KuZongFan commented 8 months ago

Hello, I would like to ask you
with open(os.path.join(dataset_path, 'shape_names.txt')) as fid: self._classes = [l.strip() for l in fid] self._category2idx = {e[1]: e[0] for e in enumerate(self._classes)} self._idx2category = self._classes Where to get the shape_names.txt files in the code

yewzijian commented 8 months ago

Hi. That file is part of the dataset, which should be automatically downloaded when you run the code.

On Mon, 8 Jan 2024 at 4:18 PM, KuZongFan @.***> wrote:

Hello, I would like to ask you with open(os.path.join(dataset_path, 'shape_names.txt')) as fid: self._classes = [l.strip() for l in fid] self._category2idx = {e[1]: e[0] for e in enumerate(self._classes)} self._idx2category = self._classes Where to get the shape_names.txt files in the code

— Reply to this email directly, view it on GitHub https://github.com/yewzijian/RPMNet/issues/39, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADIBP63VNPDSQW7NQ47QVU3YNOTWJAVCNFSM6AAAAABBRBXWSWVHI2DSMVQWIX3LMV43ASLTON2WKOZSGA3DSOJUGI2DMMI . You are receiving this because you are subscribed to this thread.Message ID: @.***>

KuZongFan commented 8 months ago

OK, thanks