개발차
[SwiftUI] 계획
취미로 앱 개발에 도전을 해볼 것이다! (아이디어를 구상했을 때, 그걸 직접 만들어 낸다는 것이 멋진것 같다!) 곧 SwiftUI가 release 된다는 소식도 있고! 지금 입문자라면 SwiftUI로 입문할 것을 추천하는 글을 봐서 이 프레임워크로 입문하기로 결심했다! 그래도 아직까지 작성된 코드들이 UIKit이기에, UIKit도 같이 공부해 볼 것이다! SwiftUI 튜토리얼을 따라가며 번역/공부를 해보겠다! https://developer.apple.com/tutorials/swiftui/creating-and-combining-views
[C/C++] 18강~19강 정리
* break 반복문 한 개를 빠져나옴 #include int main() { for (int i = 1; ; i++){ int k; scanf("%d",&k); if (k ==0){ break; } printf("%d번쩨 : %d\n", i,k); } } 결과 : 21번쩨 : 232번쩨 : 343번쩨 : 424번쩨 : 215번쩨 : 126번쩨 : 247번쩨 : 448번쩨 : 40 logout * continue 현재 돌고있는 루프를 한 번 건너뛰겠다는 것 int main() { int n; scanf("%d",&n); // 1+2+4+5+7+8+10 3의 배수는 안더함 int sum = 0; for (int i = 1 ;i
[Projects] 2. MNIST 이미지로 그림 그리기!
https://github.com/ChaminLee/2019.11.04_Image_Mosaic In [2]:import cv2 import os import numpy as np import matplotlib.pyplot as plt from collections import defaultdict In [3]:img = cv2.imread('./shiba2.jpg') imgray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY) # fx, fy가 작을 수록 픽셀이 더 크게 나뉨 imgray = cv2.resize(imgray,None,fx=0.15,fy=0.15) print(imgray.shape) plt.figure(figsize=(20,20)) plt.imshow(imgray,'..
[알고리즘] 50. Encryption
An English text needs to be encrypted using the following encryption scheme. First, the spaces are removed from the text. Let be the length of this text. Then, characters are written into a grid, whose rows and columns have the following constraints:For example, the sentence , after removing spaces is characters long. is between and , so it is written in the form of a grid with 7 rows and 8 colu..
[OpenCV] 07-1. Camera Calibration
이번 장에서는카메라상에서 왜곡, 카메라의 내재/외적 파라미터 등이러한 파라미터들과 왜곡되지않은 이미지등을 찾아볼 것이다.Basics오늘날의 값싼 핀홀 카메라는 이미지에 많은 왜곡을 불러온다. 두 가지 주요한 왜곡은 방사형 왜곡(radial distortion)과 접선형 왜곡(tangential distortion)이다.방사형 왜곡은 직선을 곡선처럼 보이게 한다. 이미지를 화면 중앙에서 멀어지게 한다면 이는 더 많은 영향을 미치게 된다. 예를 들어서, 아래의 이미지를 보면, 체스 보드의 양 끝 가장자리를 빨간 선으로 표시를 해두었다. 하지만 가장자리가 직선이 아니고, 빨간 선과도 일치하지 않는 것을 볼 수 있다. 예측된 직선들은 돌출되어있다. 왜곡(dist..