목록분류 전체보기 (65)
ㅂㄱ
카메라 캘리브레이션(Camera Calibration)
카메라 캘리브레이션이란?
영상처리
2022. 2. 1. 13:51
Boost Asio (Install, CMakeLists.txt)
Boost.Asio 는 네트워크와 저수준 I/O programming 을 위한 크로스 플랫폼 C++ library 다. 관련된 기능을 수행하면서 관련되는 동시성 문제나 lock 문제들을 명시적/암시적으로 modern c++ 스럽게 해결 할 수 있는 도구를 제공해준다. Install sudo apt-get install libboost-all-dev CMakeLists.txt SET(srcs main.cpp ) add_executable(app.out ${srcs}) target_link_libraries(app.out boost_system boost_thread )
Boost Lib
2021. 11. 22. 16:11
Boost란?
간단 명료하게 개인적인 생각으로 정의해보자면 boost는 C++ Standard Tamplate Library(STL)의 확장 및 추가 편의 Library의 집합체 정도로 말할 수 있습니다.
Boost Lib
2021. 11. 22. 14:50
Ubuntu Nodejs(16) 환경세팅
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - sudo apt install -y nodejs # for development server you might need to install development tools sudo apt-get install gcc g++ make
카테고리 없음
2021. 11. 20. 14:37