'분류 전체보기' 카테고리의 글 목록 (9 Page)
본문 바로가기

분류 전체보기98

Human Pose Estimation 설치 및 좌표추출방법 1. Anaconda Virtual Environment 설치(파이썬 3.8.3버젼) 2. Conda activate pose 3. GitHub Clone & build git clone https://github.com/hci-mkim/pose_project.git %cd pose_project python setup.py install 3.1 Library install(Pandas, OpenCV, Pytorch, Torchvision) pip install pandas pip install opencv-python==4.5.1 conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch 4. Running example cd ex.. 2021. 4. 13.
[강화학습] Inverse RL _ 개발환경세팅(Mujoco 설치) mujoco 설치사이트 접속 www.roboti.us/license.html#personal MuJoCo License types: Trial Personal Institutional MuJoCo Trial License: 30 days We invite you to register for a free trial of MuJoCo. Trials are limited to one per user per year. After registration you will receive an email with your activation www.roboti.us 파란색부분 정보입력 - Student에 체크 - Request License클릭 A few moments later..~ 아래 메일이 온다. account.. 2021. 3. 22.
[OpenCV] 2. Rect_클래스 Rect_클래스는 사각형을 표현하는데 쓰이는 클래스다. Rect (x좌표, y좌표, width(너비), height(높이)) 로 총 4개의 인자로 구성. 1, 2번째인자는 시작 좌표, 3, 4번째인자는 크기 정보를 포함. 클래스 안에는 br(), tl(), size(), contains(), area() 와 같은 메서드가 포함되어있다. br은 bottom right의 줄임말로 왼쪽 우측 점을 의미. tl은 top left의 줄임말로 위 왼쪽 점을 의미. rect = rect+point : 사각형에 대한 평행이동 rect = rect+size : 사각형 크기의 변경 rect = rect1 & rect2 : 사각형의 교차영역 rect = rect1 | rect2 : 사각형의 포함영역 2021. 3. 17.
[OpenCV] 1. 기초환경세팅 (VS 2019설치부터 OpenCV빌드까지) Visual Studio 2019 , OpenCV 기본세팅 1. Visual studio 2019 community version 다운로드 visualstudio.microsoft.com/ko/thank-you-downloading-visual-studio/?sku=Community&rel=16 Visual Studio를 다운로드해 주셔서 감사합니다. - Visual Studio visualstudio.microsoft.com 2. OpenCV 다운로드 sourceforge.net/projects/opencvlibrary/ OpenCV Download OpenCV for free. Open Source Computer Vision Library. The Open Source Computer Vision .. 2021. 3. 9.
Tensorflow 1.0 대 버젼 코드를 Tensorflow 2.0 버젼에서 구동하기 Upgrade to TensorFlow 2.0 방법 1 : import tensorflow as tf 대신 아래 코드를 사용. import tensorflow.compat.v1 as tf tf.disable_v2_behavior() 2.0 대 버젼으로 올라가면서 변경된 사항들 1) tf.layers -> tf.keras.layers 2) tf.contrib.layers(slim) -> tf.layers -> tf.keras.layers 참고 # https://www.tensorflow.org/beta/guide/migration_guide 텐서플로 1 코드를 텐서플로 2로 바꾸기 | TensorFlow Core Note: 이 문서는 텐서플로 커뮤니티에서 번역했습니다. 커뮤니티 번역 활동의 특성상 정확한 .. 2021. 1. 11.