{"about":{"site":"https://codewithpapers.app","non_affiliation":"Code with Papers and Syntology are not affiliated with, endorsed by, or sponsored by Papers with Code, Meta, or the pwc-archive mirror.","licence":"CC BY-SA 4.0","licence_url":"https://creativecommons.org/licenses/by-sa/4.0/legalcode","attribution":"https://codewithpapers.app/attribution","modified":"archive material modified by Syntology; see the attribution page"},"url":"/paper/partslip-enhancing-low-shot-3d-part","title":"PartSLIP++: Enhancing Low-Shot 3D Part Segmentation via Multi-View Instance Segmentation and Maximum Likelihood Estimation","arxiv_id":"2312.03015","date":"2023-12-05","proceeding":null,"authors":["Yuchen Zhou","Jiayuan Gu","Xuanlin Li","Minghua Liu","Yunhao Fang","Hao Su"],"abstract":"Open-world 3D part segmentation is pivotal in diverse applications such as robotics and AR/VR. Traditional supervised methods often grapple with limited 3D data availability and struggle to generalize to unseen object categories. PartSLIP, a recent advancement, has made significant strides in zero- and few-shot 3D part segmentation. This is achieved by harnessing the capabilities of the 2D open-vocabulary detection module, GLIP, and introducing a heuristic method for converting and lifting multi-view 2D bounding box predictions into 3D segmentation masks. In this paper, we introduce PartSLIP++, an enhanced version designed to overcome the limitations of its predecessor. Our approach incorporates two major improvements. First, we utilize a pre-trained 2D segmentation model, SAM, to produce pixel-wise 2D segmentations, yielding more precise and accurate annotations than the 2D bounding boxes used in PartSLIP. Second, PartSLIP++ replaces the heuristic 3D conversion process with an innovative modified Expectation-Maximization algorithm. This algorithm conceptualizes 3D instance segmentation as unobserved latent variables, and then iteratively refines them through an alternating process of 2D-3D matching and optimization with gradient descent. Through extensive evaluations, we show that PartSLIP++ demonstrates better performance over PartSLIP in both low-shot 3D semantic and instance-based object part segmentation tasks. Code released at https://github.com/zyc00/PartSLIP2.","url_abs":"https://arxiv.org/abs/2312.03015v1","url_pdf":"https://arxiv.org/pdf/2312.03015v1.pdf","source":{"archive":"pwc-archive (Hugging Face), CC BY-SA 4.0","snapshot":"2025-07-28","licence_url":"https://creativecommons.org/licenses/by-sa/4.0/legalcode","row_kind":"abstracts"},"code_links":[{"paper_slug":"partslip-enhancing-low-shot-3d-part","repo_url":"https://github.com/zyc00/partslip2","is_official":1,"mentioned_in_paper":1,"mentioned_in_github":0,"framework":"pytorch","reach":{"status":"ok","spdx":"MIT"}}],"tasks":[{"task_slug":"3d-instance-segmentation-1","task_name":"3D Instance Segmentation"},{"task_slug":"3d-part-segmentation","task_name":"3D Part Segmentation"},{"task_slug":"instance-segmentation","task_name":"Instance Segmentation"},{"task_slug":"segmentation","task_name":"Segmentation"},{"task_slug":"semantic-segmentation","task_name":"Semantic Segmentation"}],"methods":[{"method_slug":"sam","method_name":"SAM"}],"datasets_introduced":[],"methods_introduced":[],"results":[],"syntology":{"atlas_url":"https://app.syntology.ai/?focus=2312.03015","mcp":{"get_harvested_code_for_paper":{"arxiv_id":"2312.03015"}},"developers":"https://syntology.ai/developers","read_at":"2026-09-24T18:15:14+00:00","read_at_is":"when the build read Syntology's graph, not when any sample ran","claim":"Per-sample execution status on synthesized fixtures; not a correctness claim about the paper. Samples come from repositories linked to the paper, official or community; repo_kind says which.","repos":[{"provenance":"external:paperswithcode_snapshot_2025-07-28","url":"https://github.com/zyc00/partslip2","reach":{"status":"ok","spdx":"MIT"}}],"summary":{"ran":17},"by_repo_kind":{"official":{"samples":17,"ran":17,"repositories":1}},"repo_kind_vocabulary":{"official":"The archive marks this repository official for the paper","named_in_paper":"The archive records that the paper mentions this repository; it is not marked official","listed":"In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper","found_in_text":"Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted","community":"Not in the archive's code links for this paper; a community repository Syntology harvested"},"n_pointer_only_for_licence":0,"samples":[{"code_sha256_prefix":"7905eb68c83d6fc3","entry":"calc_iou","repo":"zyc00/partslip2","repo_kind":"official","path":"eval/semantic_eval.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/eval/semantic_eval.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"7905eb68c83d6fc3"}},{"code_sha256_prefix":"1b89b53acf1b369c","entry":"check_pc_within_bbox","repo":"zyc00/partslip2","repo_kind":"official","path":"src/bbox2seg.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/bbox2seg.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"1b89b53acf1b369c"}},{"code_sha256_prefix":"8a98fdde1d2d9243","entry":"check_pc_within_seg_mask","repo":"zyc00/partslip2","repo_kind":"official","path":"src/bbox2seg.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/bbox2seg.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"8a98fdde1d2d9243"}},{"code_sha256_prefix":"ab81f972201a59c2","entry":"compute_ap","repo":"zyc00/partslip2","repo_kind":"official","path":"eval/eval_utils.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/eval/eval_utils.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"ab81f972201a59c2"}},{"code_sha256_prefix":"80ca23c0df5a69f0","entry":"draw_rectangle","repo":"zyc00/partslip2","repo_kind":"official","path":"src/glip_inference.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/glip_inference.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"80ca23c0df5a69f0"}},{"code_sha256_prefix":"292627cba462fe52","entry":"gen_gt_labels_partnete","repo":"zyc00/partslip2","repo_kind":"official","path":"eval/instance_eval.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/eval/instance_eval.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"292627cba462fe52"}},{"code_sha256_prefix":"743c650ee7589524","entry":"get_iou","repo":"zyc00/partslip2","repo_kind":"official","path":"src/utils.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/utils.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"743c650ee7589524"}},{"code_sha256_prefix":"b21d7e74c2ec8b4c","entry":"get_point_iou","repo":"zyc00/partslip2","repo_kind":"official","path":"src/bbox2seg.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/bbox2seg.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"b21d7e74c2ec8b4c"}},{"code_sha256_prefix":"bf327ed3e34a1d26","entry":"get_union","repo":"zyc00/partslip2","repo_kind":"official","path":"src/mask2ins_refine.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/mask2ins_refine.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"bf327ed3e34a1d26"}},{"code_sha256_prefix":"db4d6d533b962001","entry":"intersection","repo":"zyc00/partslip2","repo_kind":"official","path":"src/mask2ins_refine.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/mask2ins_refine.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":true,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"db4d6d533b962001"}},{"code_sha256_prefix":"158388a7fdef7c78","entry":"load_gt_h5","repo":"zyc00/partslip2","repo_kind":"official","path":"eval/eval_utils.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/eval/eval_utils.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"158388a7fdef7c78"}},{"code_sha256_prefix":"4faf8454539ef598","entry":"load_img","repo":"zyc00/partslip2","repo_kind":"official","path":"src/glip_inference.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/glip_inference.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"4faf8454539ef598"}},{"code_sha256_prefix":"66f8aac6d7748b1b","entry":"load_img","repo":"zyc00/partslip2","repo_kind":"official","path":"src/mask2ins_refine.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/mask2ins_refine.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"66f8aac6d7748b1b"}},{"code_sha256_prefix":"adc92675e71d2ebc","entry":"load_ply","repo":"zyc00/partslip2","repo_kind":"official","path":"eval/instance_eval.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/eval/instance_eval.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"adc92675e71d2ebc"}},{"code_sha256_prefix":"54d843892d13a52f","entry":"load_pred_h5","repo":"zyc00/partslip2","repo_kind":"official","path":"eval/eval_utils.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/eval/eval_utils.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"54d843892d13a52f"}},{"code_sha256_prefix":"d188e48d8dedbdee","entry":"merge_small_components","repo":"zyc00/partslip2","repo_kind":"official","path":"src/gen_superpoint.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/gen_superpoint.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"d188e48d8dedbdee"}},{"code_sha256_prefix":"e767dc9c06cc5761","entry":"normalize_pc","repo":"zyc00/partslip2","repo_kind":"official","path":"src/utils.py","file_url":"https://github.com/zyc00/partslip2/blob/HEAD/src/utils.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"e767dc9c06cc5761"}}]},"arxiv_metadata":null,"syntology_extracted_results":null}