🎯
- shapelim [at] [My Affiliation] [dot] edu
- https://orcid.org/0000-0002-7185-4666
- in/hyungtae-lim-34b8a015a
- https://buymeacoffee.com/htlim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Tutorial Author: [email protected] (임형태) | |
#include <pcl/point_types.h> | |
#include <pcl/PCLPointCloud2.h> | |
#include <pcl/conversions.h> | |
#include <pcl/visualization/cloud_viewer.h> | |
#include <pcl/common/transforms.h> | |
#include <pcl/registration/gicp.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Tutorial Author: [email protected] (임형태) | |
#include <pcl/point_types.h> | |
#include <pcl/PCLPointCloud2.h> | |
#include <pcl/conversions.h> | |
#include <pcl/visualization/cloud_viewer.h> | |
#include <pcl/common/transforms.h> | |
#include <pcl/registration/icp.h> | |
#include <chrono> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Tutorial Author: [email protected] (임형태) | |
#include <pcl/point_types.h> | |
#include <pcl/features/normal_3d.h> | |
#include <pcl/io/pcd_io.h> | |
#include <pcl/visualization/pcl_visualizer.h> | |
#include <iostream> | |
#include <vector> | |
#include <chrono> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Tutorial Author: [email protected] (임형태) | |
#include <pcl/point_types.h> | |
#include <pcl/kdtree/kdtree_flann.h> | |
#include <pcl/visualization/pcl_visualizer.h> | |
#include <iostream> | |
#include <vector> | |
#include <ctime> | |
#include <string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Tutorial Author: [email protected] (임형태) | |
#include <pcl/point_types.h> | |
#include <pcl/visualization/pcl_visualizer.h> | |
#include <pcl/kdtree/kdtree_flann.h> | |
#include <iostream> | |
#include <vector> | |
#include <ctime> | |
#include <string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Tutorial Author: [email protected] (임형태) | |
#include <limits.h> /* PATH_MAX = 4096 */ | |
#include <pcl/point_types.h> | |
#include <pcl/PCLPointCloud2.h> | |
#include <pcl/visualization/cloud_viewer.h> | |
#include <pcl/visualization/pcl_visualizer.h> | |
#include <pcl/common/transforms.h> | |
using namespace std; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <pcl/point_types.h> | |
#include <pcl/PCLPointCloud2.h> | |
#include <pcl/conversions.h> | |
using namespace std; | |
class DummyClass { | |
public: | |
// Error Case 1 | |
// 선언 단에 new를 하면 error가 남! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global_config] | |
focus = system | |
handle_size = 1 | |
tab_position = bottom | |
[keybindings] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -it -e "DISPLAY=$DISPLAY" -v="/tmp/.X11-unix:/tmp/.X11-unix:rw" -v /home/shapelim/dataset:/home/dataset -v /home/shapelim/dataset/docker_ws:/home/ws --gpus all --privileged --rm -it nvidia/cudagl:10.1-devel-ubuntu18.04 /bin/bash |