본문 바로가기

PROGRAM

(92)
02. VSCode 설치 - Python 구글에서 vscode 검색 Download for Windows 에서 다운로드 (그냥 다운로드 받아도 됨) 다운로드 된 파일 실행 설치 VSCode 설정 - 실행된 vscode - Extension 탭에서 Python 검색 - 인스톨할 Extension 찾아서 Install Python, Python for VSCode, Python Extension Pack Pylance Code Runner Korean Language Pack for Visual Studio Code - VSCode를 다시 시작하면 한글로 메뉴가 변경됨 탐색기 설정 - 폴더 열기를 사용하여 내가 작업할 폴더 지정 - C:\python_opencv 폴더를 선택 -> 폴더 선택 버튼 클릭 인터프리터 선택 - 설치한 아나콘다 선택하기 :..
01. Anaconda3 설치(2020.11 64bit) 아나콘다 사이트에 접속하기 아나콘다(www.anaconda.com ) 접속 Anaconda | The World's Most Popular Data Science Platform Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities. www.anaconda.com - 아나콘다 사이트 - Products -> Indivisual Edition 클릭 - 다운로드 된 파일 아나콘다 설치 - 설치 - Add Anaconda3 to my PATH environment variable 체크 show details 를 ..
Visual Studio 2019 community Secure Warning 무시하기 디버그 -> 속성 -> C/C++ -> 전처리기 -> 전처리기 정의 -> _DEBUG 아래줄에 삽입 _CRT_SECURE_NO_WARNINGS
열혈C++ CH06 PP.249 MyFriendClass.cpp //Boy.h #ifndef __BOY_H__ #define __BOY_H__ #include "Girl.h" class Boy { private: int height; friend class Girl; // Girl클래스에 대한 friend 선언 public: Boy(int len); void ShowYourFriendInfo(Girl& frn); }; #endif // !__BOY_H__ //Boy.cpp #include #include #include "Boy.h" using namespace std; Boy::Boy(int len) : height(len) {} void Boy::ShowYourFriendInfo(Girl& frn) { cout
Visual Studio Install & Test Example
00. VS Code 설치 - 완전 초기화 설치되어 있는 VSCode를 완전 초기화하고 다시 설치하기 위한 첫단계로 완전초기화 방법을 알아본다. 1. C:\Users\사용자명\.vscode 폴더 삭제 2. C:\Users\사용자명\AppData\Roaming\Code 폴더 삭제 3. 제어판에서 Visual Studio Code 삭제 4 . 다 지워졌으면 재설치
Object Tracking 파이썬+OPENCV로 객체 추적을 확인해 보기 위해서 자료를 찾아보았다. - 기본적으로 MeanShift를 사용해서 물체를 추적하는것으로 보인다.(CamShift로 개선하여 사용한다) dsbook.tistory.com/180 import cv2 import numpy as np capture = cv2.VideoCapture("TestVideo.mp4") histogram = None terminal = (cv2.TERM_CRITERIA_EPS | cv2.TERM_CRITERIA_COUNT, 15, 0.5) while capture.isOpened(): ret, frame = capture.read() if not ret: break draw = frame.copy() if histogram is not..
YOLOv3 - Android Studio (작성중) 1. 구글에서 yolov3 android 로 검색해보면 나오는 사이트이긴 하나 아주 간략히만 되어 있다. github.com/ivangrov/Android-Deep-Learning-with-OpenCV ivangrov/Android-Deep-Learning-with-OpenCV Contribute to ivangrov/Android-Deep-Learning-with-OpenCV development by creating an account on GitHub. github.com 2. 검색해서 찾았으나 위의 1번을 참고해서 돌린것으로 판단된다. m.blog.naver.com/bdg9412/221795234705 YOLOV3 - Android yolov3를 안드로이드 스튜디오를 통하여 안드로이드 폰에서 작동..