Skip to content

Commit de3906b

Browse files
committed
Remove Brisk keypoints and features because there is no non SSE4 version
1 parent b576d17 commit de3906b

File tree

17 files changed

+0
-3931
lines changed

17 files changed

+0
-3931
lines changed

apps/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,6 @@ if(build)
195195
PCL_ADD_EXECUTABLE_OPT_BUNDLE(pcl_ni_agast ${SUBSYS_NAME} src/ni_agast.cpp)
196196
target_link_libraries(pcl_ni_agast pcl_common pcl_io pcl_filters pcl_visualization pcl_segmentation pcl_sample_consensus pcl_features pcl_keypoints pcl_surface pcl_search)
197197

198-
PCL_ADD_EXECUTABLE_OPT_BUNDLE(pcl_ni_brisk ${SUBSYS_NAME} src/ni_brisk.cpp)
199-
target_link_libraries(pcl_ni_brisk pcl_common pcl_io pcl_filters pcl_visualization pcl_segmentation pcl_sample_consensus pcl_features pcl_keypoints pcl_surface pcl_search)
200-
201198
PCL_ADD_EXECUTABLE_OPT_BUNDLE(pcl_ni_linemod ${SUBSYS_NAME} src/ni_linemod.cpp)
202199
target_link_libraries(pcl_ni_linemod pcl_common pcl_io pcl_filters pcl_visualization pcl_segmentation pcl_sample_consensus pcl_features pcl_surface pcl_search)
203200

apps/src/ni_brisk.cpp

Lines changed: 0 additions & 305 deletions
This file was deleted.

common/include/pcl/common/point_tests.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ namespace pcl
8383
template<> inline bool isFinite<pcl::VFHSignature308> (const pcl::VFHSignature308&) { return (true); }
8484
template<> inline bool isFinite<pcl::ESFSignature640> (const pcl::ESFSignature640&) { return (true); }
8585
template<> inline bool isFinite<pcl::IntensityGradient> (const pcl::IntensityGradient&) { return (true); }
86-
template<> inline bool isFinite<pcl::BRISKSignature512> (const pcl::BRISKSignature512&) { return (true); }
8786

8887
// specification for pcl::PointXY
8988
template <> inline bool

common/include/pcl/impl/point_types.hpp

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@
7777
(pcl::FPFHSignature33) \
7878
(pcl::VFHSignature308) \
7979
(pcl::ESFSignature640) \
80-
(pcl::BRISKSignature512) \
8180
(pcl::Narf36) \
8281
(pcl::IntensityGradient) \
8382
(pcl::PointWithScale) \
@@ -137,7 +136,6 @@
137136
(pcl::FPFHSignature33) \
138137
(pcl::VFHSignature308) \
139138
(pcl::ESFSignature640) \
140-
(pcl::BRISKSignature512) \
141139
(pcl::Narf36)
142140

143141
namespace pcl
@@ -1273,19 +1271,6 @@ namespace pcl
12731271
friend std::ostream& operator << (std::ostream& os, const VFHSignature308& p);
12741272
};
12751273

1276-
PCL_EXPORTS std::ostream& operator << (std::ostream& os, const BRISKSignature512& p);
1277-
/** \brief A point structure representing the Binary Robust Invariant Scalable Keypoints (BRISK).
1278-
* \ingroup common
1279-
*/
1280-
struct BRISKSignature512
1281-
{
1282-
float scale;
1283-
float orientation;
1284-
unsigned char descriptor[64];
1285-
1286-
friend std::ostream& operator << (std::ostream& os, const BRISKSignature512& p);
1287-
};
1288-
12891274
PCL_EXPORTS std::ostream& operator << (std::ostream& os, const ESFSignature640& p);
12901275
/** \brief A point structure representing the Ensemble of Shape Functions (ESF).
12911276
* \ingroup common

common/include/pcl/point_types.h

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -257,11 +257,6 @@ namespace pcl
257257
*/
258258
struct GFPFHSignature16;
259259

260-
/** \brief Members: float scale; float orientation; uint8_t descriptor[64]
261-
* \ingroup common
262-
*/
263-
struct BRISKSignature512;
264-
265260
/** \brief Members: float x, y, z, roll, pitch, yaw; float descriptor[36]
266261
* \ingroup common
267262
*/
@@ -552,12 +547,6 @@ POINT_CLOUD_REGISTER_POINT_STRUCT (pcl::FPFHSignature33,
552547
(float[33], histogram, fpfh)
553548
)
554549

555-
POINT_CLOUD_REGISTER_POINT_STRUCT (pcl::BRISKSignature512,
556-
(float, scale, brisk_scale)
557-
(float, orientation, brisk_orientation)
558-
(unsigned char[64], descriptor, brisk_descriptor512)
559-
)
560-
561550
POINT_CLOUD_REGISTER_POINT_STRUCT (pcl::VFHSignature308,
562551
(float[308], histogram, vfh)
563552
)

0 commit comments

Comments
 (0)