From eb4afdd1fbacd632692be1b4809371959d38bff0 Mon Sep 17 00:00:00 2001 From: Minki Kim <100950580+rlaalsrl0922@users.noreply.github.com> Date: Sat, 26 Apr 2025 04:24:12 +0900 Subject: [PATCH] [i18n-KO] Translated `keypoint_detection.md` to Korean (#36649) * fix: manual edits * fix: manual edits * fix: manual edits * Update docs/source/ko/tasks/keypoint_detection.md Anchor lower modify Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> * Update docs/source/ko/tasks/keypoint_detection.md connect letter Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> * Update docs/source/ko/tasks/keypoint_detection.md modify to usual words Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> * Update docs/source/ko/tasks/keypoint_detection.md modify extension word Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/ko/tasks/keypoint_detection.md modify to usual words Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> * Update docs/source/ko/tasks/keypoint_detection.md modify to usual words Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> * Update docs/source/ko/tasks/keypoint_detection.md modify to usual representation Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> --------- Co-authored-by: Woojun Jung <46880056+jungnerd@users.noreply.github.com> Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> --- docs/source/ko/_toctree.yml | 2 + docs/source/ko/tasks/keypoint_detection.md | 155 +++++++++++++++++++++ 2 files changed, 157 insertions(+) create mode 100644 docs/source/ko/tasks/keypoint_detection.md diff --git a/docs/source/ko/_toctree.yml b/docs/source/ko/_toctree.yml index 2b656308d6..809fedca91 100644 --- a/docs/source/ko/_toctree.yml +++ b/docs/source/ko/_toctree.yml @@ -77,6 +77,8 @@ title: 이미지 특징 추출 - local: tasks/mask_generation title: 마스크 생성 + - local: tasks/keypoint_detection + title: 키포인트 탐지 - local: tasks/knowledge_distillation_for_image_classification title: 컴퓨터 비전(이미지 분류)를 위한 지식 증류(knowledge distillation) title: 컴퓨터 비전 diff --git a/docs/source/ko/tasks/keypoint_detection.md b/docs/source/ko/tasks/keypoint_detection.md new file mode 100644 index 0000000000..bffca9b284 --- /dev/null +++ b/docs/source/ko/tasks/keypoint_detection.md @@ -0,0 +1,155 @@ + + +# 키포인트 탐지 [[keypoint-detection]] + +[[open-in-colab]] + +키포인트 감지(Keypoint detection)은 이미지 내의 특정 포인트를 식별하고 위치를 탐지합니다. 이러한 키포인트는 랜드마크라고도 불리며 얼굴 특징이나 물체의 일부와 같은 의미 있는 특징을 나타냅니다. +키포인트 감지 모델들은 이미지를 입력으로 받아 아래와 같은 출력을 반환합니다. + +- **키포인트들과 점수**: 관심 포인트들과 해당 포인트에 대한 신뢰도 점수 +- **디스크립터(Descriptors)**: 각 키포인트를 둘러싼 이미지 영역의 표현으로 텍스처, 그라데이션, 방향 및 기타 속성을 캡처합니다. + +이번 가이드에서는 이미지에서 키포인트를 추출하는 방법을 다루어 보겠습니다. + +이번 튜토리얼에서는 키포인트 감지의 기본이 되는 모델인 [SuperPoint](./model_doc/superpoint)를 사용해보겠습니다. + +```python +from transformers import AutoImageProcessor, SuperPointForKeypointDetection +processor = AutoImageProcessor.from_pretrained("magic-leap-community/superpoint") +model = SuperPointForKeypointDetection.from_pretrained("magic-leap-community/superpoint") +``` +아래의 이미지로 모델을 테스트 해보겠습니다. + +
+
+
+
+