File size: 389 Bytes
97aa5af | 1 2 3 4 5 6 7 8 | # Feature extractor for R3PM-Net
'''
Unfortunately, the feature extractor cannot be provided in the repository due to copyright issues.
Please implement the feature extractor for R3PM-Net as described in the paper and place it in this file.
Currently, the feature extractor is set to PPFNet (same as RPMNet).
'''
from thirdparty.learning3d.models import PPFNet
feature_extractor = PPFNet() |