libfreenect2
Open source drivers for the Kinect for Windows v2 device
파일 탐색기
최종 버전 다운로드 (.zip)- ISSUE_TEMPLATE.md
- CheckOpenCLICDLoader.cmake
- FindGLFW3.cmake
- FindLibUSB.cmake
- FindOpenCL.cmake
- FindOpenNI2.cmake
- FindTegraJPEG.cmake
- FindTurboJPEG.cmake
- GenerateResources.cmake
- SetupLibfreenect2Threading.cmake
- download_debs_trusty.sh
- INSTALL-windows.txt
- install_glfw.sh
- install_libusb.sh
- install_libusb_vs2013.cmd
- install_libusb_vs2015.cmd
- install_ubuntu.sh
- LICENSES.txt
- make_release_msvc.cmd
- CMakeLists.txt
- Doxyextra.css
- Doxyfile.in
- mainpage.dox
- CMakeLists.txt
- Protonect.cpp
- viewer.cpp
- viewer.h
- cl.hpp
- command.h
- command_transaction.h
- response.h
- usb_control.h
- event_loop.h
- transfer_pool.h
- allocator.h
- async_packet_processor.h
- data_callback.h
- depth_packet_processor.h
- depth_packet_stream_parser.h
- logging.h
- packet_processor.h
- resource.h
- rgb_packet_processor.h
- rgb_packet_stream_parser.h
- threading.h
- color_settings.h
- config.h.in
- frame_listener.hpp
- frame_listener_impl.h
- led_settings.h
- libfreenect2.hpp
- logger.h
- packet_pipeline.h
- registration.h
- Android.mk
- Application.mk
- examples.mk
- libfreenect2.mk
- config.h
- README.md
- 90-kinect2.rules
- Readme.tracing.txt
- starttrace.bat
- stoptrace.bat
- timestamp.bat
- ColorStream.cpp
- ColorStream.hpp
- DepthStream.cpp
- DepthStream.hpp
- DeviceDriver.cpp
- IrStream.cpp
- IrStream.hpp
- Registration.cpp
- Registration.hpp
- Utility.cpp
- Utility.hpp
- VideoStream.cpp
- VideoStream.hpp
- debug.fs
- default.vs
- filter1.fs
- filter2.fs
- stage1.fs
- stage2.fs
- tinythread.cpp
- tinythread.h
- allocator.cpp
- command_transaction.cpp
- cpu_depth_packet_processor.cpp
- cuda_depth_packet_processor.cu
- cuda_kde_depth_packet_processor.cu
- depth_packet_processor.cpp
- depth_packet_stream_parser.cpp
- event_loop.cpp
- flextGL.cpp
- flextGL.h
- frame_listener_impl.cpp
- libfreenect2.cpp
- logging.cpp
- opencl_depth_packet_processor.cl
- opencl_depth_packet_processor.cpp
- opencl_kde_depth_packet_processor.cl
- opencl_kde_depth_packet_processor.cpp
- opengl_depth_packet_processor.cpp
- packet_pipeline.cpp
- registration.cpp
- resource.cpp
- rgb_packet_processor.cpp
- rgb_packet_stream_parser.cpp
- tegra_jpeg_rgb_packet_processor.cpp
- transfer_pool.cpp
- turbo_jpeg_rgb_packet_processor.cpp
- usb_control.cpp
- vaapi_rgb_packet_processor.cpp
- vt_rgb_packet_processor.cpp
- main.py
- blender_viewer.blend
- config.h
- msdirent.h
- PracticalSocket.h
- recorder.h
- streamer.h
- CMakeLists.txt
- PracticalSocket.cpp
- ProtonectSR.cpp
- README.md
- recorder.cpp
- streamer.cpp
- generate_resources.cpp
- mkcontrib.py
- .gitattributes
- .gitignore
- APACHE20
- CMakeLists.txt
- CONTRIB
- freenect2.cmake.in
- freenect2.pc.in
- freenect2Version.cmake.in
- GPL2
- README.md
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/OpenKinect/libfreenect2
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd libfreenect2
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. 공식 설치 스크립트
쉬움 추천사전 준비물
- Homebrew macOS/Linux용 패키지 매니저입니다.
brew install libusb
Homebrew로 이미 빌드된 패키지를 바로 설치합니다. 소스 빌드가 필요 없습니다.
brew install glfw3
Homebrew로 이미 빌드된 패키지를 바로 설치합니다. 소스 빌드가 필요 없습니다.
brew install jpeg-turbo
Homebrew로 이미 빌드된 패키지를 바로 설치합니다. 소스 빌드가 필요 없습니다.
brew tap brewsci/science
Homebrew에 이 프로젝트의 저장소(tap)를 등록합니다.
설치 후 새 터미널을 열고, 프로그램의 버전 확인 명령(예: --version)으로 정상 설치됐는지 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. CMake
보통사전 준비물
cmake .. -G "Visual Studio 12 2013 Win64"
소스코드를 분석해 빌드 설정 파일을 생성합니다 (build 폴더 안에서 실행해야 함).
cmake --build . --config RelWithDebInfo --target install
이 명령어를 터미널에 그대로 입력해 실행하세요.
cmake ..
소스코드를 분석해 빌드 설정 파일을 생성합니다 (build 폴더 안에서 실행해야 함).
sudo apt-get install build-essential cmake pkg-config
APT 패키지 저장소에서 바로 설치합니다 (Debian/Ubuntu 계열).
cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/freenect2
소스코드를 분석해 빌드 설정 파일을 생성합니다 (build 폴더 안에서 실행해야 함).
build 폴더 안에 실행 파일이 생성됐는지 확인하고, 직접 실행해보세요 (예: ./build/앱이름).
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
