전체 글(115)
-
!!! 블로그 이전 !!!
https://changaistudy.oopy.io/이 사이트에서 이전 글 링크와 함께 새로운 글을 보실 수 있습니다 ♥
2023.08.25 -
DeepSORT(SIMPLE ONLINE AND REALTIME TRACKING WITH A DEEP ASSOCIATION METRIC)
Abstract MOT에서 간단하고 효과적인 알고리즘이었던 SORT의 성능향상을 위해 appearance information을 통합 더 긴 기간동안의 occlusion에도 객체 트래킹이 가능함 효과적으로 identity(ID라 하겠다) switch를 줄임 SORT의 방향과 같이 계산적으로 복잡한 과정은 offline pretrain과정에 치우침 offline pretrain단계에서는 대규모 person re-identification dataset에서 deep association metric을 학습한다. online 적용에서는 visual appearance space에서 nearest neighbor queries를 사용해 measurement-to-track association을 구축 => 즉,..
2021.10.01 -
SORT(Simple Online And Realtime Tracking)
오랜만에 논문리뷰 입니당.... https://arxiv.org/abs/1602.00763 Simple Online and Realtime Tracking This paper explores a pragmatic approach to multiple object tracking where the main focus is to associate objects efficiently for online and realtime applications. To this end, detection quality is identified as a key factor influencing tracking performanc arxiv.org (참고하면 좋은 글) kalman filter - https://brunch.c..
2021.09.28 -
컴퓨터구조 4주차 -1
※ http://kocw.net/home/cview.do?mty=p&kemId=1388791 영남대학교 최규상 교수님의 KOCW강의를 듣고 작성한 글입니다. ※ Supporting Procedures in Computer Hardware Six Steps in Execution of a Procedure Main routine(caller) 가 parameters(=arguments) 를 procedure(callee)가 접근할 수 있는 곳에 위치시킨다. caller : 함수를 부르는 루틴 callee: 불러지는 함수 $a0 - $a3이 register에서 arguments를 위한 곳 (four argument registers) Caller가 callee로 control을 넘긴다. (callee가 실행..
2021.08.20 -
컴퓨터구조 3주차 -2
※ http://kocw.net/home/cview.do?mty=p&kemId=1388791 영남대학교 최규상 교수님의 KOCW강의를 듣고 작성한 글입니다. ※ 이번 강의에는 전공수업 디지털 공학에서 배운 내용이 많이 들어가 있었다. 음수를 타나내기 위한 2s-Complement Signed Integers 2의 보수 방식 Sign Extension bit 수 증가할 때 어떻게 처리할 것인가 bit수는 증가했지만 나타내는 수는 같도록 해야한다. In MIPS Instruction set addi : 결국 immediate value값을 32 bit으로 바꾸어 레지스터에 더해주어야 한다. lb(load byte) , lh(load halfword) : 메모리로부터 1byte/halfwore(2byte) 받..
2021.08.18 -
wget으로 google drive에서 파일 다운
1. 구글드라이브에서 파일에 마우스 우클릭으로 공유 가능한 링크 생성 - 모든 사용자가 볼 수 있게 옵션 설정 2. https://drive.google.com/file/d/[FILEID]/view?usp=sharing 형태의 링크가 생성됨 3. wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=[FILEID]' -O FILENAME 용량이 크다면 $ curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=[FILEID]" > /dev/null $ curl -Lb ./cookie "https://drive.google.com/uc?export=down..
2021.08.12