Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
☑️ 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
🔗 Issue number and link
#11