본문 바로가기

분류 전체보기51

What is different between concat & element sum Element Add layer A (2, 1, 4, 2) layer B (0, 1, 0, 1) layer A + layer B = (2, 2, 4, 3) Concat layer A (64, 128, 128) layer B (32, 128, 128) layer A (concat) layer B = (96, 128, 128) 각각 언제 사용해야할까? concat과 add를 각각 언제 사용해야 하나의 궁금증으로 찾아보고 네트워크에도 여러번 실험해봤지만, 결과적으로 Element wise sum과 concat은 각각 자신의 네트워크에 맞게 사용해야 한다고 생각한다. 물론 메모리 관점에서는 Add가 concat보다 더 성능이 좋다. 이 둘의 차이는 평소 우리의 생활의 예를 들어보면 된다. A가 3000원 B가 .. 2020. 2. 12.
Image Global& Local feature Image Feature란? 이미지를 수치적 값의 관점에서 추출한 정보로, 인간이 상호관계를 이해하기 어렵다. 이미지의 feature를 추출하는 이유는 원본 이미지보다 차원이 낮아서 많은 이미지를 처리하는 overhead를 낮출 수 있기 때문이다. Local Feature 객체인식, 식별에 사용 (Recognization, Identification) 즉 사람인지 물체인지 인식한다. 고급응용 프로그램 -객체의 이미지 패치(patch: keypoints in the image)를 설명한다. -texture in image patch -shape matrics -invariant moments -Histogram oriented gradients Global Feature 이미지 검색, 객체 감지 및 분류 .. 2020. 2. 12.
저조도 영상 색 복원 기법 영상개선기법(저조도 영상 색복원) under-exposed image enhancement - 영상의 구조적으로 어두운 부분과 밝은부분을 개선한다. (색감을 유지해야 한다) 1. statistical information-based approach -stretch the dynamic range using histograms 2.Retinex-based approach image can be decomposed into illumination and reflectance 2번을 더 많이 사용하고 있다. -Single-scale Retinex output(SSR) -Multi-scale Retinex output(MSR) ---matrix 기반 optimazion을 진행한 기법들 Decomposition .. 2019. 12. 19.
유니티 오큘러스 GO 연동, 빌드하기 Unity 2018.1.0f2 버전에서 진행 1.핸드폰, 오큘러스 GO 연동 1) 핸드폰으로 오큘러스 모바일 다운받기 2) 오큘러스 계정생성 3) 핸드폰과 오큘러스 연동하기 4) 연동 후 오큘러스 설정에 들어가서 개발자 모드 on하기 2. Unity setting 1) 오큘러스 유니티 패키지 다운로드 https://developer.oculus.com/downloads/unity/ Unity | Developer Center | Oculus Oculus Audio Profiler for Windows developer.oculus.com 2) 오큘러스 Integration 다운로드 https://developer.oculus.com/downloads/package/unity-integration/ Uni.. 2019. 11. 27.