pyplot 기초 한 화면에 여러 개의 이미지를 그리려면 figure 함수를 통해 Figure 객체를 만든 후 add_subplot 메서드를 통해 원하는 개수만큼 subplot를 만들면 된다. 아래의 예제는 두 개의 이미지를 각각 하나의 plot에 그리는 예제이다. fig = plt.figure() ax1 = fig.add_subplot(1, 2, 1) ax1.set_title('Image read by skimg') ax1.imshow(rgb) ax1.axis('off') ax2 = fig.add_subplot(1, 2, 2) ax2.set_title('Image read by matplot image') ax2.imshow(img) ax2.axis('off') plt.show() add_subplot..
테마설정 File > Setting > Appearence & ... > Appearance > Theme 단축키 기본동작 Sync: Gradle 동기화 Ctrl + Alt + y 창 창 Max/Min (= 탭 더블클릭) Ctrl + Shift + F12 파일 파일오픈 Double shift View Quick Outline Ctrl + F12 Search Search everything Double shift Find in file Ctrl + f Find usage Alt + F7 Find symbol Ctrl + Alt + Shift + n Find class Ctrl + n Find next F3 Find prev Shift + F3 Highlight Ctrl + Shift + F7 이동 ( Na..
Python installer download www.python.org/downloads/ Download Python The official home of the Python Programming Language www.python.org Install 설치 시작 화면에서 "Add Python 3.7 to PATH" 항목을 체크 해준다. 가상환경 생성(venv) 가상환경 생성에 관한 설명은 아래 페이지에서 자세히 알 수 있다. dojang.io/mod/page/view.php?id=2470 가상환경을 만드는 방법에는 virtualenv 라이브러리와 venv가 있다. 파이썬2에서 가상환경을 지원하지 않았기 때문에 virtualenv라는 서드파티 라이브러리가 필요했다. 하지만 파이썬3에는 venv라는 가..