Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
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
/
ref_1.cpp
adfa5456
Add files using upload-large-folder tool
42b9c42
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
263 Bytes
#
include
"../Eigen/Core"
#
ifdef
EIGEN_SHOULD_FAIL_TO_BUILD
#
define
CV_QUALIFIER const
#
else
#
define
CV_QUALIFIER
#
endif
using
namespace
Eigen;
void
call_ref
(Ref<VectorXf> a)
{ }
int
main
()
{
VectorXf
a
(
10
)
;
CV_QUALIFIER VectorXf&
ac
(a)
;
call_ref
(ac);
}