Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AI] 다른 영상 좌표간의 표준화 방법과 통일화 적용 #13

Merged
merged 1 commit into from
Sep 3, 2023

Conversation

insung3511
Copy link
Member

☑️ Describe your changes

현재까지는 동일 영상 크기 내에서 처리를 진행하였습니다. 문제는 Guide와 Consumer의 영상 크기가 달라지게 되면 당연하게도 거리상의 좌표가 달라지게 나오기 때문에 이를 객관적인 지표로 활용하기 어렵다는 문제가 있습니다. 이를 해결하기 위해서 적용한 방법은 Normalization 방법입니다.

영상의 크기가 1920 x 1080 이라고 가정하고 현재 좌표가 328, 616 이라고 하겠습니다 (x, y 순 입니다). Normalize 되는 방법은 $\frac{328}{1920}$를 하게 되면 대략 0.256278, $\frac{616}{1080}$ 를 하면 대략 0.48125가 나옵니다. 그렇게 되면 0 ~ 2 사이에 값으로 정규화를 적용할 수 있게 됩니다. 2가 나오는 이유는 영상의 절반을 나누면 반드시 2가 나오기 때문입니다. 이를 다른 영상의 Height와 Width에 적용하게 되면 실제 좌표가 다르더라도 다른 영상 내에서 같은 위치에 놓일 수 있게 됩니다.

아직 검증이 되지 않았지만 이후 다른 분들과 미팅과 연구를 통해서 해결내아갈 예정입니다.

📷 Screenshot

IMG_3486

🔗 Issue number and link

#11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
👷AI AI 🔨 feature 기능 추가 📈 test 테스트 코드
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

2 participants