일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Gazebo
- turtlebot3
- 촉각센서
- opencv
- ax200
- darknet_ros
- RGB-D
- roslaunch
- FreeCAD
- turtlebot
- CUDA
- ROS
- Installation
- linetracing
- error
- autorace
- Linux
- CuDNN
- ubuntu
- Kinetic
- amcl
- rqt
- gcc
- roslib
- YoLO
- sources.list
- webots
- 전이학습
- 부분공간
- G++
- Today
- Total
목록프로그래밍언어/C++ (34)
기술 성공, 실패 기록소
https://lktprogrammer.tistory.com/54 [C/C++] 포인터의 포인터(더블 포인터)의 이해 더블 포인터의 이해 더블 포인터도 싱글 포인터와 마찬가지로 메모리 공간의 주소를 저장하는 변수입니다. 다만, 차이가 나는 것은 포인터가 가르키는 대상입니다. 1 2 3 4 5 6 7 8 int main() { lktprogrammer.tistory.com
https://devbot.tistory.com/70 C++ . 과 -> 차이 클래스나 구조체에서 자체 필드(변수)를 사용시 이용되는 연산자이다. . :참조로 요소 선택(점 앞에 변수나 포인터가 아닌 저장하려는 데이터가 있을때 사용) -> : 포인터로 요소 선택(화살표 앞 devbot.tistory.com
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=kxv1031&logNo=221781764871 C++ 헤더파일/네임스페이스 개념 ( 기초정리 1편 ) #include ㄴ> 헤더파일, 전처리 지시자 헤더파일 => 확장자가 h 로 끝난다, ... blog.naver.com
https://blog.naver.com/PostView.nhn?blogId=helicopter55&logNo=221544227821 C++ 헤더파일 만들기 왜 헤더파일을 만들어야 되요? 이제 프로그래밍을 시작한지 얼마 되지 않으신 분들의 코드를 보면 대체로 ... blog.naver.com
https://docs.opencv.org/3.4.15/db/df5/tutorial_linux_gcc_cmake.html OpenCV: Using OpenCV with gcc and CMake Prev Tutorial: Installation in Linux Next Tutorial: Using OpenCV with Eclipse (plugin CDT) NoteWe assume that you have successfully installed OpenCV in your workstation. The easiest way of using OpenCV in your code is to use CMake. A few advantages (taken docs.opencv.org
https://www.gpgstudy.com/forum/viewtopic.php?t=5324 함수 파라미터로 굳히 const &를 쓰는 이유는? - GpgStudy 포럼 프로그래밍 일반에 관한 포럼입니다. 운영자: 류광 비회원 전체글 글쓴이: 비회원 » 2005-03-11 14:22 함수(const D3DXVECTOR3& , const D3DXVECTOR3& ) 이렇게 되어 있는것을 종종 보고는 하는데요 다른 사람들 www.gpgstudy.com const & 읽기전용, 복사가 일어나지 않는다. https://boycoding.tistory.com/217 C++ 08.03 - 참조로 전달 (Pass by reference) 08.03 - 참조로 전달 (Pass by reference) 값으로 전달은 두 ..
https://answers.ros.org/question/212857/what-is-constptr/ What is ConstPtr&? - ROS Answers: Open Source Q&A Forum When messages are automatically generated into C++ code, there are several typedefs defined. One of them is ::Ptr, which is typedef-ed to be a boost::shared_ptr , and another is ::ConstPtr which is boost::shared_ptr . By passing a const pointer into the ca answers.ros.org "shared poi..
https://eigen.tuxfamily.org/index.php?title=Main_Page Eigen Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. Get it The latest stable release is Eigen 3.4.0. Get it here: tar.bz2, tar.gz, zip. Changelog. The latest 3.3 release is Eigen 3.3.9. Get it h eigen.tuxfamily.org https://sunggoo.tistory.com/36 Eigen3 란? 참고자료: https://dritch..
https://www.youtube.com/watch?v=TZSYo8ItJjE
siminq.tistory.com/entry/%EC%B0%B8%EC%A1%B0%EC%9E%90%EB%A5%BC-%EB%A6%AC%ED%84%B4%ED%95%98%EB%8A%94-%ED%95%A8%EC%88%98-%EC%9D%B4%ED%95%B4-%EC%89%BD%EA%B2%8C-%ED%95%98%EA%B8%B0 [C++] 참조자를 리턴하는 함수.. 이해 쉽게 하기. 먼저 설명에 들어가기 앞서서, 이 사실을 기억하자. 1 ) int a = 30; -> rvalue인 30을 복사 떠서 a에 저장. (30이 a로 이동하는게 아니다. 복사를 하는것이다! 이런 함수가 있다고 가정해보자. int& Func siminq.tistory.com