RISS 학술연구정보서비스

검색

인기 검색어

    다국어 입력

    http://chineseinput.net/에서 pinyin(병음)방식으로 중국어를 변환할 수 있습니다.

    변환된 중국어를 복사하여 사용하시면 됩니다.

    예시)
    • 中文 을 입력하시려면 zhongwen을 입력하시고 space를누르시면됩니다.
    • 北京 을 입력하시려면 beijing을 입력하시고 space를 누르시면 됩니다.
    닫기

    Geometrically-Grounded Bounding Box Refinement for 3D Object Detection : 3차원 객체 검출을 위한 기하학 기반 바운딩 박스 정제

    한글로보기

    https://www.riss.kr/link?id=T17392710

    • 저자
    • 발행사항

      대구 : 경북대학교 대학원, 2026

    • 학위논문사항

      Thesis (M.A.) -- 경북대학교 대학원 , 컴퓨터학부 , 2026. 2

    • 발행연도

      2026

    • 작성언어

      영어

    • 주제어
    • DDC

      006.3 판사항(23)

    • 발행국(도시)

      대한민국

    • 형태사항

      v, 40 p. : ill., charts ; 26 cm.

    • 일반주기명

      Thesis Advisor: 박상효.
      Includes bibliographical references.

    • UCI식별코드

      I804:22001-000000111624

    • 소장기관
      • 경북대학교 중앙도서관 소장기관정보
    • 0

      상세조회
    • 0

      다운로드
    서지정보 열기
    • 내보내기
    • 내책장담기
    • 공유하기
      • URL 복사
    • 오류접수
    인용문이 복사되었습니다.

    부가정보

    다국어 초록 (Multilingual Abstract) kakao i 다국어 번역

    Three-dimensional object detection from point clouds has become a crucial capability for embodied artificial intelligence, supporting perception and in- teraction in robotics, autonomous navigation, and mixed reality. Although recent detectors achieve strong overall performance, they still fail to localize objects that exhibit high structural complexity. Objects such as furniture, ap- pliances, and composite assemblies contain multiple interleaved components and fine geometric details. These heterogeneous structures lead to inconsistent feature aggregation within the same object, which causes fragmented or over- sized bounding boxes. A major contributing factor is the inability of volumet- ric IoU-based supervision to provide stable and continuous gradients—par- ticularly when predicted and ground-truth boxes barely overlap-resulting in unreliable boundary learning in sparse indoor point clouds. To address this limitation, we propose PointRefine3D, a geometry-aware refinement framework that improves the localization precision of existing 3D detectors without modifying their backbones. The framework consists of two complementary components. First, the Point IoU Loss optimizes the align- ment between predicted boxes and observed object points rather than vol- umetric overlap. This point-based formulation produces smooth gradients near object boundaries and enforces surface-level coverage, even for sparsely sampled or partially missing shapes. Because initial box predictions are of- ten unstable in sparse point clouds, an additional refinement mechanism be- comes necessary. Accordingly, we introduce an IoU Regression Head that predicts the localization quality of each detected box and guides selective re- finement. During inference, boxes with low predicted IoU values are refined by an Object-Aware Refinement module that recomputes the box center and size from the spatial distribution of surrounding points while discarding pla- nar outliers. This selective strategy improves boundary accuracy with minimal computational overhead. We also note that our baseline detector (UniDet3D) adopts axis-aligned ground-truth annotations, meaning that all ground-truth yaw angles are θ = 0, which we explicitly account for in our formulation. Experiments on four indoor benchmarks—ScanNetV2, S3DIS, MultiScan, and 3RScan—demonstrate that PointRefine3D consistently outperforms UniDet3D. The method achieves an average gain of +1.8 mAP@0.5 and up to +4.1 on the challenging 3RScan dataset. These results verify that combining point-level geometric supervision with selective refinement yields robust and precise 3D detection, especially for complex, multi-part objects with interleaved geome-
    번역하기

    Three-dimensional object detection from point clouds has become a crucial capability for embodied artificial intelligence, supporting perception and in- teraction in robotics, autonomous navigation, and mixed reality. Although recent detectors achieve...

    Three-dimensional object detection from point clouds has become a crucial capability for embodied artificial intelligence, supporting perception and in- teraction in robotics, autonomous navigation, and mixed reality. Although recent detectors achieve strong overall performance, they still fail to localize objects that exhibit high structural complexity. Objects such as furniture, ap- pliances, and composite assemblies contain multiple interleaved components and fine geometric details. These heterogeneous structures lead to inconsistent feature aggregation within the same object, which causes fragmented or over- sized bounding boxes. A major contributing factor is the inability of volumet- ric IoU-based supervision to provide stable and continuous gradients—par- ticularly when predicted and ground-truth boxes barely overlap-resulting in unreliable boundary learning in sparse indoor point clouds. To address this limitation, we propose PointRefine3D, a geometry-aware refinement framework that improves the localization precision of existing 3D detectors without modifying their backbones. The framework consists of two complementary components. First, the Point IoU Loss optimizes the align- ment between predicted boxes and observed object points rather than vol- umetric overlap. This point-based formulation produces smooth gradients near object boundaries and enforces surface-level coverage, even for sparsely sampled or partially missing shapes. Because initial box predictions are of- ten unstable in sparse point clouds, an additional refinement mechanism be- comes necessary. Accordingly, we introduce an IoU Regression Head that predicts the localization quality of each detected box and guides selective re- finement. During inference, boxes with low predicted IoU values are refined by an Object-Aware Refinement module that recomputes the box center and size from the spatial distribution of surrounding points while discarding pla- nar outliers. This selective strategy improves boundary accuracy with minimal computational overhead. We also note that our baseline detector (UniDet3D) adopts axis-aligned ground-truth annotations, meaning that all ground-truth yaw angles are θ = 0, which we explicitly account for in our formulation. Experiments on four indoor benchmarks—ScanNetV2, S3DIS, MultiScan, and 3RScan—demonstrate that PointRefine3D consistently outperforms UniDet3D. The method achieves an average gain of +1.8 mAP@0.5 and up to +4.1 on the challenging 3RScan dataset. These results verify that combining point-level geometric supervision with selective refinement yields robust and precise 3D detection, especially for complex, multi-part objects with interleaved geome-

    더보기

    목차 (Table of Contents)

    • Abstract 1
    • I. Introduction 3
    • II. Related Work 7
    • 2.1 Point cloud-based 3D object detection 7
    • 2.2 Intersection over Union loss in detection 8
    • Abstract 1
    • I. Introduction 3
    • II. Related Work 7
    • 2.1 Point cloud-based 3D object detection 7
    • 2.2 Intersection over Union loss in detection 8
    • 2.3 Bounding box post-processing and refinement 9
    • III. Preliminaries 10
    • 3.1 Task Definition 10
    • 3.2 Baseline Framework 11
    • IV. Methodology 11
    • 4.1 Overview 11
    • 4.2 Point IoU Loss 13
    • 4.3 IoU Regression for Quality Estimation 16
    • 4.4 Object-Aware Refinement 17
    • 4.4.1 Point Sampling: 17
    • 4.4.2 Surface Point Selection: 17
    • 4.4.3 Tight Bound Estimation: 17
    • 4.4.4 IoU-Adaptive Correction 18
    • 4.5 Training and Implementation Details 19
    • 4.5.1 Network Configuration 20
    • 4.5.2 Hyperparameter Settings 20
    • V. Experiments 21
    • 5.1 Experimental Setup 21
    • 5.2 Comparison with State-of-the-Art 22
    • 5.3 Per-Class Performance Analysis 25
    • 5.4 Ablation Study 27
    • 5.5 Qualitative Results 28
    • VI. Limitations 30
    • VII. Conclusion 31
    • References 32
    • 국문 초록 38
    더보기

    분석정보

    View

    상세정보조회

    0

    Usage

    원문다운로드

    0

    대출신청

    0

    복사신청

    0

    EDDS신청

    0

    동일 주제 내 활용도 TOP

    더보기

    주제

    연도별 연구동향

    연도별 활용동향

    연관논문

    연구자 네트워크맵

    공동연구자 (7)

    유사연구자 (20) 활용도상위20명

    이 자료와 함께 이용한 RISS 자료

    나만을 위한 추천자료

    해외이동버튼