오토데스크에서는 Python FBX SDK를 제공함. 근데 다큐멘테이션에서도 이미 쎄한 기운이 느껴지겠지만, 이거 설치하는게 몹시 고통임. 어떻게 설치하는지 알아보도록 하자.
- Package 파일 깔기 아래 링크에서 원하는 버전을 깐다. https://aps.autodesk.com/developer/overview/fbx-sdk
무려 pip도 아니고 pkg 파일을 직접 설치해야 함. 근데 골때리는게 이걸 깔면 어디에 깔렸는지 알려주지도 않음.
오토데스크에서는 Python FBX SDK를 제공함. 근데 다큐멘테이션에서도 이미 쎄한 기운이 느껴지겠지만, 이거 설치하는게 몹시 고통임. 어떻게 설치하는지 알아보도록 하자.
무려 pip도 아니고 pkg 파일을 직접 설치해야 함. 근데 골때리는게 이걸 깔면 어디에 깔렸는지 알려주지도 않음.
| import random | |
| import time | |
| temp = 50 | |
| x = 30 | |
| pe = 2 | |
| re = 2 | |
| k = 0 |
Those are list of problems you may encounter while using opencv.
[nx video] failed to subdev set_fmt() ...
These kind of error may occur when you try to stream from webcam, in linux. Internally, opencv depends on v4l(video4linux) to access webcam data. This error means that the camera doesn't support your requested format, eg.frame size, frame rate, color(rgb, yuv, ...). Check spec of your webcam again and provide correct options when you open it.
| FROM ubuntu:16.04 | |
| MAINTAINER raysuhyunlee@gmail.com | |
| RUN apt-get -y update | |
| RUN apt-get upgrade | |
| RUN apt-get install -y build-essential cmake pkg-config \ | |
| libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev \ | |
| libavcodec-dev libavformat-dev libswscale-dev \ | |
| libxvidcore-dev libx264-dev libxine2-dev \ | |
| libv4l-dev v4l-utils \ |
arm은 크게 armel과 armhf 아키텍쳐로 나뉜다. 어떤 아키텍쳐를 쓰느냐에 따라 사용하는 컴파일러/툴체인이 달라진다. https://stackoverflow.com/questions/26692065/difference-between-arm-eabi-arm-gnueabi-and-gnueabi-hf-compilers
다음과 같은 커맨드로 확인할 수 있다. 자세한 것은 아래 링크 참조
$ readelf -A /proc/self/exe | grep Tag_ABI_VFP_args| http://www.pfeiferindustries.com/timing-belt-pulley-pitch-diameter-outside-diameter-charts-i-12-l-en.html |
| #!/bin/bash | |
| echo "install rpm package manager" | |
| sudo apt-get install rpm2cpio | |
| echo "install tizen sdk" | |
| wget http://download.tizen.org/sdk/Installer/tizen-sdk-2.4-rev4/tizen-web-cli_TizenSDK_2.4.0_Rev4_ubuntu-64.bin | |
| sudo chmod +x tizen-web-cli_TizenSDK_2.4.0_Rev4_ubuntu-64.bin | |
| ./tizen-web-cli_TizenSDK_2.4.0_Rev4_ubuntu-64.bin | |
| rm tizen-web-cli_TizenSDK_2.4.0_Rev4_ubuntu-64.bin |