Skip to content

Commit df839a8

Browse files
authored
Add template instantion for pcl::PointXYZRGB (#165)
1 parent b1b128f commit df839a8

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/fast_gicp/gicp/fast_gicp.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
template class fast_gicp::FastGICP<pcl::PointXYZ, pcl::PointXYZ>;
55
template class fast_gicp::FastGICP<pcl::PointXYZI, pcl::PointXYZI>;
66
template class fast_gicp::FastGICP<pcl::PointNormal, pcl::PointNormal>;
7+
template class fast_gicp::FastGICP<pcl::PointXYZRGB, pcl::PointXYZRGB>;

src/fast_gicp/gicp/fast_vgicp.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
template class fast_gicp::FastVGICP<pcl::PointXYZ, pcl::PointXYZ>;
55
template class fast_gicp::FastVGICP<pcl::PointXYZI, pcl::PointXYZI>;
66
template class fast_gicp::FastVGICP<pcl::PointNormal, pcl::PointNormal>;
7+
template class fast_gicp::FastVGICP<pcl::PointXYZRGB, pcl::PointXYZRGB>;

src/fast_gicp/gicp/fast_vgicp_cuda.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
template class fast_gicp::FastVGICPCuda<pcl::PointXYZ, pcl::PointXYZ>;
55
template class fast_gicp::FastVGICPCuda<pcl::PointXYZI, pcl::PointXYZI>;
66
template class fast_gicp::FastVGICPCuda<pcl::PointNormal, pcl::PointNormal>;
7+
template class fast_gicp::FastVGICPCuda<pcl::PointXYZRGB, pcl::PointXYZRGB>;

src/fast_gicp/gicp/lsq_registration.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
template class fast_gicp::LsqRegistration<pcl::PointXYZ, pcl::PointXYZ>;
55
template class fast_gicp::LsqRegistration<pcl::PointXYZI, pcl::PointXYZI>;
66
template class fast_gicp::LsqRegistration<pcl::PointNormal, pcl::PointNormal>;
7+
template class fast_gicp::LsqRegistration<pcl::PointXYZRGB, pcl::PointXYZRGB>;

0 commit comments

Comments
 (0)