반응형

Python 10

Jupyter Notebook 단축키 모음

셀 명령 모드 (Cell Command Mode) Shift + Enter: 현재 셀 실행 후 다음 셀로 이동 (다음 셀이 없을 경우 새로운 셀 생성) Ctrl + Enter: 현재 셀 실행 Alt + Enter: 현재 셀 실행 후 아래에 새로운 셀 삽입 Y: 코드 셀로 변경 M: 마크다운 셀로 변경 R: Raw 셀로 변경(코드를 실행하지 않는 상태로 변경) A: 현재 셀 위에 새로운 셀 삽입 (Above) B: 현재 셀 아래에 새로운 셀 삽입 (Below) X, DD: 현재 셀 삭제 Z: 삭제한 셀 복구 C: 셀 복사하기 Shift + M: 현재 셀과 다음 셀을 병합 1~6: Markdown 셀로 변경하고 내용을 제목으로 변경(1~6까지 단계별 글씨 크기 조정) L: 셀에 줄 번호가 나타나게 Ctrl ..

Python 2024.03.11

Deep Learning based Object Detection using YOLOv3 with OpenCV ( Python / C++ )

Deep Learning based Object Detection using YOLOv3 with OpenCV ( Python / C++ ) (learnopencv.com) https://youtu.be/WP4F6aK1Ft8 In this post, we will learn how to use YOLOv3 — a state of the art object detector — with OpenCV. YOLOv3 is the latest variant of a popular object detection algorithm YOLO – You Only Look Once. The published model recognizes 80 different objects in images and videos, but ..

Python 2022.08.18
반응형