def img2tensor(img): #the format of img needs to be bgr format img = img[..., ::-1] #bgr2rgb img = img.transpose(2, 0, 1) #(H, W, CH) -> (CH, H, W) img = np.ascontiguousarray(img) tensor = torch.tensor(img, dtype=torch.float32) return tensor
www.edwith.org/linearalgebra4ai/lecture/24796/ [LECTURE] Orthogonal Projection Ⅰ : edwith 학습목표 이번에는 Orthogonal Projection 관점에서 Least Squares Problem을 접근해보도록 하겠습니다. 이를 위해 선형대수에서 중요한 개념인 Ortho... - 커넥트재단 www.edwith.org Orthogonal Projection Perspective Projection은 "사영을 시킨다."라는 의미로 해석 가능합니다. \(A\mathbf{x}=\mathbf{b}\)인 Linear System에 대하여, Least Square 방법을 통해 구한 해 \(\hat{\mathbf{x}}\)는 다음과 같습니다. \(\..
File(*.txt, *.cfg 등)에 기록된 값은 프로그램상에서 Read하는 경우에 String자료형으로 Load됩니다. File에 기록된 값(s)이 True 혹은 False 인 경우, 프로그램상에서 이를 Boolean 값(b)으로 변환하는 과정이 필요합니다. 해당 과정은 아래와 같이 간단하게 구현할 수 있습니다. b = s == 'True' 출처는 다음과 같습니다. stackoverflow.com/questions/715417/converting-from-a-string-to-boolean-in-python Converting from a string to boolean in Python? Does anyone know how to do convert from a string to a boolean ..
- Total
- Today
- Yesterday
- 순열
- Lowest Common Ancestor
- 백준 11437
- 백준
- MOT
- 인공지능을 위한 선형대수
- 백준 11053
- 파이참
- 조합
- FairMOT
- PyCharm
- 이분탐색
- 백준 1766
- 위상 정렬 알고리즘
- 단축키
- 백트래킹
- 가장 긴 증가하는 부분 수열
- 문제집
- ㅂ
- LCA
- C++ Deploy
- cosine
- 자료구조
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |