Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Datasets:
adfa5456
/
FastRobustICP
like
0
Modalities:
3D
Text
Formats:
text
Size:
< 1K
ArXiv:
arxiv:
2007.07627
Libraries:
Datasets
Croissant
Dataset card
Data Studio
Files
Files and versions
xet
Community
1
main
FastRobustICP
/
include
/
eigen
/
failtest
/
const_qualified_block_method_retval_0.cpp
adfa5456
Add files using upload-large-folder tool
42b9c42
verified
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
245 Bytes
#
include
"../Eigen/Core"
#
ifdef
EIGEN_SHOULD_FAIL_TO_BUILD
#
define
CV_QUALIFIER const
#
else
#
define
CV_QUALIFIER
#
endif
using
namespace
Eigen;
void
foo
(CV_QUALIFIER Matrix3d &m)
{
Block<Matrix3d,3,3>
b
(m.block<
3
,
3
>(
0
,
0
))
;
}
int
main
()
{}