1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008
|
# -*- coding: utf-8 -*-
from libcpp.string cimport string
from libcpp cimport bool
from libcpp.vector cimport vector
# main
cimport pcl_defs as cpp
# from boost_shared_ptr cimport shared_ptr
cdef extern from "pcl/io/pcd_io.h" namespace "pcl::io":
# XYZ
int load(string file_name, cpp.PointCloud[cpp.PointXYZ] &cloud) nogil except +
int loadPCDFile(string file_name,
cpp.PointCloud[cpp.PointXYZ] &cloud) nogil except +
int savePCDFile(string file_name, cpp.PointCloud[cpp.PointXYZ] &cloud,
bool binary_mode) nogil except +
int savePCDFileASCII (string file_name, cpp.PointCloud[cpp.PointXYZ] &cloud) nogil except +
int savePCDFileBinary (string &file_name, cpp.PointCloud[cpp.PointXYZ] &cloud) nogil except +
int savePCDFile (string &file_name,
cpp.PointCloud[cpp.PointXYZ] &cloud,
vector[int] &indices,
bool binary_mode) nogil except +
# XYZI
int load(string file_name, cpp.PointCloud[cpp.PointXYZI] &cloud) nogil except +
int loadPCDFile(string file_name,
cpp.PointCloud[cpp.PointXYZI] &cloud) nogil except +
int savePCDFile(string file_name, cpp.PointCloud[cpp.PointXYZI] &cloud,
bool binary_mode) nogil except +
# XYZRGB
int load(string file_name, cpp.PointCloud[cpp.PointXYZRGB] &cloud) nogil except +
int loadPCDFile(string file_name,
cpp.PointCloud[cpp.PointXYZRGB] &cloud) nogil except +
int savePCDFile(string file_name, cpp.PointCloud[cpp.PointXYZRGB] &cloud,
bool binary_mode) nogil except +
# XYZRGBA
int load(string file_name, cpp.PointCloud[cpp.PointXYZRGBA] &cloud) nogil except +
int loadPCDFile(string file_name,
cpp.PointCloud[cpp.PointXYZRGBA] &cloud) nogil except +
int savePCDFile(string file_name, cpp.PointCloud[cpp.PointXYZRGBA] &cloud,
bool binary_mode) nogil except +
# PointWithViewpoint
int load(string file_name, cpp.PointCloud[cpp.PointWithViewpoint] &cloud) nogil except +
int loadPCDFile(string file_name,
cpp.PointCloud[cpp.PointWithViewpoint] &cloud) nogil except +
int savePCDFile(string file_name, cpp.PointCloud[cpp.PointWithViewpoint] &cloud,
bool binary_mode) nogil except +
cdef extern from "pcl/io/ply_io.h" namespace "pcl::io":
# XYZ
int loadPLYFile(string file_name,
cpp.PointCloud[cpp.PointXYZ] &cloud) nogil except +
int savePLYFile(string file_name, cpp.PointCloud[cpp.PointXYZ] &cloud,
bool binary_mode) nogil except +
# XYZI
int loadPLYFile(string file_name,
cpp.PointCloud[cpp.PointXYZI] &cloud) nogil except +
int savePLYFile(string file_name, cpp.PointCloud[cpp.PointXYZI] &cloud,
bool binary_mode) nogil except +
# XYZRGB
int loadPLYFile(string file_name,
cpp.PointCloud[cpp.PointXYZRGB] &cloud) nogil except +
int savePLYFile(string file_name, cpp.PointCloud[cpp.PointXYZRGB] &cloud,
bool binary_mode) nogil except +
# XYZRGBA
int loadPLYFile(string file_name,
cpp.PointCloud[cpp.PointXYZRGBA] &cloud) nogil except +
int savePLYFile(string file_name, cpp.PointCloud[cpp.PointXYZRGBA] &cloud,
bool binary_mode) nogil except +
# PointWithViewpoint
int loadPLYFile(string file_name,
cpp.PointCloud[cpp.PointWithViewpoint] &cloud) nogil except +
int savePLYFile(string file_name, cpp.PointCloud[cpp.PointWithViewpoint] &cloud,
bool binary_mode) nogil except +
#http://dev.pointclouds.org/issues/624
#cdef extern from "pcl/io/ply_io.h" namespace "pcl::io":
# int loadPLYFile (string file_name, PointCloud[cpp.PointXYZ] cloud)
# int savePLYFile (string file_name, PointCloud[cpp.PointXYZ] cloud, bool binary_mode)
# cdef extern from "pcl/io/ply_io.h" namespace "pcl::io":
###
# file_io.h
# namespace pcl
# class PCL_EXPORTS FileReader
# public:
# /** \brief empty constructor */
# FileReader() {}
# /** \brief empty destructor */
# virtual ~FileReader() {}
# /** \brief Read a point cloud data header from a FILE file.
# * Load only the meta information (number of points, their types, etc),
# * and not the points themselves, from a given FILE file. Useful for fast
# * evaluation of the underlying data structure.
# * Returns:
# * * < 0 (-1) on error
# * * > 0 on success
# * \param[in] file_name the name of the file to load
# * \param[out] cloud the resultant point cloud dataset (only the header will be filled)
# * \param[out] origin the sensor acquisition origin (only for > FILE_V7 - null if not present)
# * \param[out] orientation the sensor acquisition orientation (only for > FILE_V7 - identity if not present)
# * \param[out] file_version the FILE version of the file (either FILE_V6 or FILE_V7)
# * \param[out] data_type the type of data (binary data=1, ascii=0, etc)
# * \param[out] data_idx the offset of cloud data within the file
# * \param[in] offset the offset in the file where to expect the true header to begin.
# * One usage example for setting the offset parameter is for reading
# * data from a TAR "archive containing multiple files: TAR files always
# * add a 512 byte header in front of the actual file, so set the offset
# * to the next byte after the header (e.g., 513).
# */
# virtual int
# readHeader (const std::string &file_name, sensor_msgs::PointCloud2 &cloud,
# Eigen::Vector4f &origin, Eigen::Quaternionf &orientation,
# int &file_version, int &data_type, unsigned int &data_idx, const int offset = 0) = 0;
#
# /** \brief Read a point cloud data from a FILE file and store it into a sensor_msgs/PointCloud2.
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[out] origin the sensor acquisition origin (only for > FILE_V7 - null if not present)
# * \param[out] orientation the sensor acquisition orientation (only for > FILE_V7 - identity if not present)
# * \param[out] file_version the FILE version of the file (either FILE_V6 or FILE_V7)
# * \param[in] offset the offset in the file where to expect the true header to begin.
# * One usage example for setting the offset parameter is for reading
# * data from a TAR "archive containing multiple files: TAR files always
# * add a 512 byte header in front of the actual file, so set the offset
# * to the next byte after the header (e.g., 513).
# */
# virtual int
# read (const std::string &file_name, sensor_msgs::PointCloud2 &cloud,
# Eigen::Vector4f &origin, Eigen::Quaternionf &orientation, int &file_version,
# const int offset = 0) = 0;
#
# /** \brief Read a point cloud data from a FILE file (FILE_V6 only!) and store it into a sensor_msgs/PointCloud2.
# *
# * \note This function is provided for backwards compatibility only and
# * it can only read FILE_V6 files correctly, as sensor_msgs::PointCloud2
# * does not contain a sensor origin/orientation. Reading any file
# * > FILE_V6 will generate a warning.
# *
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# *
# * \param[in] offset the offset in the file where to expect the true header to begin.
# * One usage example for setting the offset parameter is for reading
# * data from a TAR "archive containing multiple files: TAR files always
# * add a 512 byte header in front of the actual file, so set the offset
# * to the next byte after the header (e.g., 513).
# */
# int
# read (const std::string &file_name, sensor_msgs::PointCloud2 &cloud, const int offset = 0)
# {
# Eigen::Vector4f origin;
# Eigen::Quaternionf orientation;
# int file_version;
# return (read (file_name, cloud, origin, orientation, file_version, offset));
# }
#
# /** \brief Read a point cloud data from any FILE file, and convert it to the given template format.
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[in] offset the offset in the file where to expect the true header to begin.
# * One usage example for setting the offset parameter is for reading
# * data from a TAR "archive containing multiple files: TAR files always
# * add a 512 byte header in front of the actual file, so set the offset
# * to the next byte after the header (e.g., 513).
# */
# template<typename PointT> inline int
# read (const std::string &file_name, pcl::PointCloud<PointT> &cloud, const int offset =0)
# {
# sensor_msgs::PointCloud2 blob;
# int file_version;
# int res = read (file_name, blob, cloud.sensor_origin_, cloud.sensor_orientation_,
# file_version, offset);
#
# // Exit in case of error
# if (res < 0)
# return res;
# pcl::fromROSMsg (blob, cloud);
# return (0);
# }
# };
#
# /** \brief Point Cloud Data (FILE) file format writer.
# * Any (FILE) format file reader should implement its virtual methodes
# * \author Nizar Sallem
# * \ingroup io
# */
# class PCL_EXPORTS FileWriter
# {
# public:
# /** \brief Empty constructor */
# FileWriter () {}
#
# /** \brief Empty destructor */
# virtual ~FileWriter () {}
#
# /** \brief Save point cloud data to a FILE file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# * \param[in] binary set to true if the file is to be written in a binary
# * FILE format, false (default) for ASCII
# */
# virtual int
# write (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# const bool binary = false) = 0;
#
# /** \brief Save point cloud data to a FILE file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message (boost shared pointer)
# * \param[in] binary set to true if the file is to be written in a binary
# * FILE format, false (default) for ASCII
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# */
# inline int
# write (const std::string &file_name, const sensor_msgs::PointCloud2::ConstPtr &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# const bool binary = false)
# {
# return (write (file_name, *cloud, origin, orientation, binary));
# }
#
# /** \brief Save point cloud data to a FILE file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the pcl::PointCloud data
# * \param[in] binary set to true if the file is to be written in a binary
# * FILE format, false (default) for ASCII
# */
# template<typename PointT> inline int
# write (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud,
# const bool binary = false)
# {
# Eigen::Vector4f origin = cloud.sensor_origin_;
# Eigen::Quaternionf orientation = cloud.sensor_orientation_;
#
# sensor_msgs::PointCloud2 blob;
# pcl::toROSMsg (cloud, blob);
#
# // Save the data
# return (write (file_name, blob, origin, orientation, binary));
# }
# };
#
# /** \brief insers a value of type Type (uchar, char, uint, int, float, double, ...) into a stringstream.
# *
# * If the value is NaN, it inserst "nan".
# *
# * \param[in] cloud the cloud to copy from
# * \param[in] point_index the index of the point
# * \param[in] point_size the size of the point in the cloud
# * \param[in] field_idx the index of the dimension/field
# * \param[in] fields_count the current fields count
# * \param[out] stream the ostringstream to copy into
# */
# template <typename Type> inline void
# copyValueString (const sensor_msgs::PointCloud2 &cloud,
# const unsigned int point_index,
# const int point_size,
# const unsigned int field_idx,
# const unsigned int fields_count,
# std::ostream &stream)
# {
# Type value;
# memcpy (&value, &cloud.data[point_index * point_size + cloud.fields[field_idx].offset + fields_count * sizeof (Type)], sizeof (Type));
# if (pcl_isnan (value))
# stream << "nan";
# else
# stream << boost::numeric_cast<Type>(value);
# }
# template <> inline void
# copyValueString<int8_t> (const sensor_msgs::PointCloud2 &cloud,
# const unsigned int point_index,
# const int point_size,
# const unsigned int field_idx,
# const unsigned int fields_count,
# std::ostream &stream)
# {
# int8_t value;
# memcpy (&value, &cloud.data[point_index * point_size + cloud.fields[field_idx].offset + fields_count * sizeof (int8_t)], sizeof (int8_t));
# if (pcl_isnan (value))
# stream << "nan";
# else
# // Numeric cast doesn't give us what we want for int8_t
# stream << boost::numeric_cast<int>(value);
# }
# template <> inline void
# copyValueString<uint8_t> (const sensor_msgs::PointCloud2 &cloud,
# const unsigned int point_index,
# const int point_size,
# const unsigned int field_idx,
# const unsigned int fields_count,
# std::ostream &stream)
# {
# uint8_t value;
# memcpy (&value, &cloud.data[point_index * point_size + cloud.fields[field_idx].offset + fields_count * sizeof (uint8_t)], sizeof (uint8_t));
# if (pcl_isnan (value))
# stream << "nan";
# else
# // Numeric cast doesn't give us what we want for uint8_t
# stream << boost::numeric_cast<int>(value);
# }
#
# /** \brief Check whether a given value of type Type (uchar, char, uint, int, float, double, ...) is finite or not
# *
# * \param[in] cloud the cloud that contains the data
# * \param[in] point_index the index of the point
# * \param[in] point_size the size of the point in the cloud
# * \param[in] field_idx the index of the dimension/field
# * \param[in] fields_count the current fields count
# *
# * \return true if the value is finite, false otherwise
# */
# template <typename Type> inline bool
# isValueFinite (const sensor_msgs::PointCloud2 &cloud,
# const unsigned int point_index,
# const int point_size,
# const unsigned int field_idx,
# const unsigned int fields_count)
# {
# Type value;
# memcpy (&value, &cloud.data[point_index * point_size + cloud.fields[field_idx].offset + fields_count * sizeof (Type)], sizeof (Type));
# if (!pcl_isfinite (value))
# return (false);
# return (true);
# }
#
# /** \brief Copy one single value of type T (uchar, char, uint, int, float, double, ...) from a string
# *
# * Uses aoti/atof to do the conversion.
# * Checks if the st is "nan" and converts it accordingly.
# *
# * \param[in] st the string containing the value to convert and copy
# * \param[out] cloud the cloud to copy it to
# * \param[in] point_index the index of the point
# * \param[in] field_idx the index of the dimension/field
# * \param[in] fields_count the current fields count
# */
# template <typename Type> inline void
# copyStringValue (const std::string &st, sensor_msgs::PointCloud2 &cloud,
# unsigned int point_index, unsigned int field_idx, unsigned int fields_count)
# {
# Type value;
# if (st == "nan")
# {
# value = std::numeric_limits<Type>::quiet_NaN ();
# cloud.is_dense = false;
# }
# else
# {
# std::istringstream is (st);
# is.imbue (std::locale::classic ());
# is >> value;
# }
#
# memcpy (&cloud.data[point_index * cloud.point_step +
# cloud.fields[field_idx].offset +
# fields_count * sizeof (Type)], reinterpret_cast<char*> (&value), sizeof (Type));
# }
#
# template <> inline void
# copyStringValue<int8_t> (const std::string &st, sensor_msgs::PointCloud2 &cloud,
# unsigned int point_index, unsigned int field_idx, unsigned int fields_count)
# {
# int8_t value;
# if (st == "nan")
# {
# value = static_cast<int8_t> (std::numeric_limits<int>::quiet_NaN ());
# cloud.is_dense = false;
# }
# else
# {
# int val;
# std::istringstream is (st);
# is.imbue (std::locale::classic ());
# is >> val;
# value = static_cast<int8_t> (val);
# }
#
# memcpy (&cloud.data[point_index * cloud.point_step +
# cloud.fields[field_idx].offset +
# fields_count * sizeof (int8_t)], reinterpret_cast<char*> (&value), sizeof (int8_t));
# }
#
# template <> inline void
# copyStringValue<uint8_t> (const std::string &st, sensor_msgs::PointCloud2 &cloud,
# unsigned int point_index, unsigned int field_idx, unsigned int fields_count)
# {
# uint8_t value;
# if (st == "nan")
# {
# value = static_cast<uint8_t> (std::numeric_limits<int>::quiet_NaN ());
# cloud.is_dense = false;
# }
# else
# {
# int val;
# std::istringstream is (st);
# is.imbue (std::locale::classic ());
# is >> val;
# value = static_cast<uint8_t> (val);
# }
#
# memcpy (&cloud.data[point_index * cloud.point_step +
# cloud.fields[field_idx].offset +
# fields_count * sizeof (uint8_t)], reinterpret_cast<char*> (&value), sizeof (uint8_t));
###
# io.h
# #include <pcl/common/io.h>
###
# lzf.h
# namespace pcl
# PCL_EXPORTS unsigned int
# lzfCompress (const void *const in_data, unsigned int in_len,
# void *out_data, unsigned int out_len);
# PCL_EXPORTS unsigned int
# lzfDecompress (const void *const in_data, unsigned int in_len,
# void *out_data, unsigned int out_len);
###
# obj_io.h
# namespace pcl
# namespace io
# PCL_EXPORTS int
# saveOBJFile (const std::string &file_name,
# const pcl::TextureMesh &tex_mesh,
# unsigned precision = 5);
#
# PCL_EXPORTS int
# saveOBJFile (const std::string &file_name,
# const pcl::PolygonMesh &mesh,
# unsigned precision = 5);
#
###
# pcd_io.h
# namespace pcl
# {
# /** \brief Point Cloud Data (PCD) file format reader.
# * \author Radu Bogdan Rusu
# * \ingroup io
# */
# class PCL_EXPORTS PCDReader : public FileReader
# {
# public:
# /** Empty constructor */
# PCDReader () : FileReader () {}
# /** Empty destructor */
# ~PCDReader () {}
# /** \brief Various PCD file versions.
# *
# * PCD_V6 represents PCD files with version 0.6, which contain the following fields:
# * - lines beginning with # are treated as comments
# * - FIELDS ...
# * - SIZE ...
# * - TYPE ...
# * - COUNT ...
# * - WIDTH ...
# * - HEIGHT ...
# * - POINTS ...
# * - DATA ascii/binary
# *
# * Everything that follows \b DATA is intepreted as data points and
# * will be read accordingly.
# *
# * PCD_V7 represents PCD files with version 0.7 and has an important
# * addon: it adds sensor origin/orientation (aka viewpoint) information
# * to a dataset through the use of a new header field:
# * - VIEWPOINT tx ty tz qw qx qy qz
# */
# enum
# {
# PCD_V6 = 0,
# PCD_V7 = 1
# };
#
# /** \brief Read a point cloud data header from a PCD file.
# *
# * Load only the meta information (number of points, their types, etc),
# * and not the points themselves, from a given PCD file. Useful for fast
# * evaluation of the underlying data structure.
# *
# * \attention The PCD data is \b always stored in ROW major format! The
# * read/write PCD methods will detect column major input and automatically convert it.
# *
# * \param[in] file_name the name of the file to load
# * \param[out] cloud the resultant point cloud dataset (only the header will be filled)
# * \param[out] origin the sensor acquisition origin (only for > PCD_V7 - null if not present)
# * \param[out] orientation the sensor acquisition orientation (only for > PCD_V7 - identity if not present)
# * \param[out] pcd_version the PCD version of the file (i.e., PCD_V6, PCD_V7)
# * \param[out] data_type the type of data (0 = ASCII, 1 = Binary, 2 = Binary compressed)
# * \param[out] data_idx the offset of cloud data within the file
# * \param[in] offset the offset of where to expect the PCD Header in the
# * file (optional parameter). One usage example for setting the offset
# * parameter is for reading data from a TAR "archive containing multiple
# * PCD files: TAR files always add a 512 byte header in front of the
# * actual file, so set the offset to the next byte after the header
# * (e.g., 513).
# *
# * \return
# * * < 0 (-1) on error
# * * == 0 on success
# */
# int
# readHeader (const std::string &file_name, sensor_msgs::PointCloud2 &cloud,
# Eigen::Vector4f &origin, Eigen::Quaternionf &orientation, int &pcd_version,
# int &data_type, unsigned int &data_idx, const int offset = 0);
#
#
# /** \brief Read a point cloud data header from a PCD file.
# *
# * Load only the meta information (number of points, their types, etc),
# * and not the points themselves, from a given PCD file. Useful for fast
# * evaluation of the underlying data structure.
# *
# * \attention The PCD data is \b always stored in ROW major format! The
# * read/write PCD methods will detect column major input and automatically convert it.
# *
# * \param[in] file_name the name of the file to load
# * \param[out] cloud the resultant point cloud dataset (only the header will be filled)
# * \param[in] offset the offset of where to expect the PCD Header in the
# * file (optional parameter). One usage example for setting the offset
# * parameter is for reading data from a TAR "archive containing multiple
# * PCD files: TAR files always add a 512 byte header in front of the
# * actual file, so set the offset to the next byte after the header
# * (e.g., 513).
# *
# * \return
# * * < 0 (-1) on error
# * * == 0 on success
# */
# int
# readHeader (const std::string &file_name, sensor_msgs::PointCloud2 &cloud, const int offset = 0);
#
# /** \brief Read a point cloud data header from a PCD file.
# *
# * Load only the meta information (number of points, their types, etc),
# * and not the points themselves, from a given PCD file. Useful for fast
# * evaluation of the underlying data structure.
# *
# * \attention The PCD data is \b always stored in ROW major format! The
# * read/write PCD methods will detect column major input and automatically convert it.
# *
# * \param[in] file_name the name of the file to load
# * \param[out] cloud the resultant point cloud dataset (only the properties will be filled)
# * \param[out] pcd_version the PCD version of the file (either PCD_V6 or PCD_V7)
# * \param[out] data_type the type of data (0 = ASCII, 1 = Binary, 2 = Binary compressed)
# * \param[out] data_idx the offset of cloud data within the file
# * \param[in] offset the offset of where to expect the PCD Header in the
# * file (optional parameter). One usage example for setting the offset
# * parameter is for reading data from a TAR "archive containing multiple
# * PCD files: TAR files always add a 512 byte header in front of the
# * actual file, so set the offset to the next byte after the header
# * (e.g., 513).
# *
# * \return
# * * < 0 (-1) on error
# * * == 0 on success
# *
# */
# int
# readHeaderEigen (const std::string &file_name, pcl::PointCloud<Eigen::MatrixXf> &cloud,
# int &pcd_version, int &data_type, unsigned int &data_idx, const int offset = 0);
#
# /** \brief Read a point cloud data from a PCD file and store it into a sensor_msgs/PointCloud2.
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[out] origin the sensor acquisition origin (only for > PCD_V7 - null if not present)
# * \param[out] orientation the sensor acquisition orientation (only for > PCD_V7 - identity if not present)
# * \param[out] pcd_version the PCD version of the file (either PCD_V6 or PCD_V7)
# * \param[in] offset the offset of where to expect the PCD Header in the
# * file (optional parameter). One usage example for setting the offset
# * parameter is for reading data from a TAR "archive containing multiple
# * PCD files: TAR files always add a 512 byte header in front of the
# * actual file, so set the offset to the next byte after the header
# * (e.g., 513).
# *
# * \return
# * * < 0 (-1) on error
# * * == 0 on success
# */
# int
# read (const std::string &file_name, sensor_msgs::PointCloud2 &cloud,
# Eigen::Vector4f &origin, Eigen::Quaternionf &orientation, int &pcd_version, const int offset = 0);
#
# /** \brief Read a point cloud data from a PCD (PCD_V6) and store it into a sensor_msgs/PointCloud2.
# *
# * \note This function is provided for backwards compatibility only and
# * it can only read PCD_V6 files correctly, as sensor_msgs::PointCloud2
# * does not contain a sensor origin/orientation. Reading any file
# * > PCD_V6 will generate a warning.
# *
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[in] offset the offset of where to expect the PCD Header in the
# * file (optional parameter). One usage example for setting the offset
# * parameter is for reading data from a TAR "archive containing multiple
# * PCD files: TAR files always add a 512 byte header in front of the
# * actual file, so set the offset to the next byte after the header
# * (e.g., 513).
# *
# * \return
# * * < 0 (-1) on error
# * * == 0 on success
# */
# int
# read (const std::string &file_name, sensor_msgs::PointCloud2 &cloud, const int offset = 0);
#
# /** \brief Read a point cloud data from any PCD file, and convert it to the given template format.
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[in] offset the offset of where to expect the PCD Header in the
# * file (optional parameter). One usage example for setting the offset
# * parameter is for reading data from a TAR "archive containing multiple
# * PCD files: TAR files always add a 512 byte header in front of the
# * actual file, so set the offset to the next byte after the header
# * (e.g., 513).
# *
# * \return
# * * < 0 (-1) on error
# * * == 0 on success
# */
# template<typename PointT> int
# read (const std::string &file_name, pcl::PointCloud<PointT> &cloud, const int offset = 0)
# {
# sensor_msgs::PointCloud2 blob;
# int pcd_version;
# int res = read (file_name, blob, cloud.sensor_origin_, cloud.sensor_orientation_,
# pcd_version, offset);
#
# // If no error, convert the data
# if (res == 0)
# pcl::fromROSMsg (blob, cloud);
# return (res);
# }
#
# /** \brief Read a point cloud data from any PCD file, and convert it to a pcl::PointCloud<Eigen::MatrixXf> format.
# * \attention The PCD data is \b always stored in ROW major format! The
# * read/write PCD methods will detect column major input and automatically convert it.
# *
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[in] offset the offset of where to expect the PCD Header in the
# * file (optional parameter). One usage example for setting the offset
# * parameter is for reading data from a TAR "archive containing multiple
# * PCD files: TAR files always add a 512 byte header in front of the
# * actual file, so set the offset to the next byte after the header
# * (e.g., 513).
# *
# * \return
# * * < 0 (-1) on error
# * * == 0 on success
# */
# int
# readEigen (const std::string &file_name, pcl::PointCloud<Eigen::MatrixXf> &cloud, const int offset = 0);
# };
#
# /** \brief Point Cloud Data (PCD) file format writer.
# * \author Radu Bogdan Rusu
# * \ingroup io
# */
# class PCL_EXPORTS PCDWriter : public FileWriter
# {
# public:
# PCDWriter() : FileWriter(), map_synchronization_(false) {}
# ~PCDWriter() {}
#
# /** \brief Set whether mmap() synchornization via msync() is desired before munmap() calls.
# * Setting this to true could prevent NFS data loss (see
# * http://www.pcl-developers.org/PCD-IO-consistency-on-NFS-msync-needed-td4885942.html).
# * Default: false
# * \note This option should be used by advanced users only!
# * \note Please note that using msync() on certain systems can reduce the I/O performance by up to 80%!
# * \param[in] sync set to true if msync() should be called before munmap()
# */
# void
# setMapSynchronization (bool sync)
# {
# map_synchronization_ = sync;
# }
#
# /** \brief Generate the header of a PCD file format
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# */
# std::string
# generateHeaderBinary (const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin,
# const Eigen::Quaternionf &orientation);
#
# /** \brief Generate the header of a BINARY_COMPRESSED PCD file format
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# */
# std::string
# generateHeaderBinaryCompressed (const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin,
# const Eigen::Quaternionf &orientation);
#
# /** \brief Generate the header of a PCD file format
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# */
# std::string
# generateHeaderASCII (const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin,
# const Eigen::Quaternionf &orientation);
#
# /** \brief Generate the header of a PCD file format
# * \param[in] cloud the point cloud data message
# * \param[in] nr_points if given, use this to fill in WIDTH, HEIGHT (=1), and POINTS in the header
# * By default, nr_points is set to INTMAX, and the data in the header is used instead.
# */
# template <typename PointT> static std::string
# generateHeader (const pcl::PointCloud<PointT> &cloud,
# const int nr_points = std::numeric_limits<int>::max ());
#
# /** \brief Generate the header of a PCD file format
# * \note This version is specialized for PointCloud<Eigen::MatrixXf> data types.
# * \attention The PCD data is \b always stored in ROW major format! The
# * read/write PCD methods will detect column major input and automatically convert it.
# *
# * \param[in] cloud the point cloud data message
# * \param[in] nr_points if given, use this to fill in WIDTH, HEIGHT (=1), and POINTS in the header
# * By default, nr_points is set to INTMAX, and the data in the header is used instead.
# */
# std::string
# generateHeaderEigen (const pcl::PointCloud<Eigen::MatrixXf> &cloud,
# const int nr_points = std::numeric_limits<int>::max ());
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in ASCII format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# * \param[in] precision the specified output numeric stream precision (default: 8)
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# *
# * As an intermediary solution, precision 8 is used, which guarantees lossless storage for RGB.
# */
# int
# writeASCII (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# const int precision = 8);
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in BINARY format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# */
# int
# writeBinary (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity ());
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in BINARY_COMPRESSED format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# */
# int
# writeBinaryCompressed (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity ());
#
# /** \brief Save point cloud data to a PCD file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# * \param[in] binary set to true if the file is to be written in a binary
# * PCD format, false (default) for ASCII
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# *
# * As an intermediary solution, precision 8 is used, which guarantees lossless storage for RGB.
# */
# inline int
# write (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# const bool binary = false)
# {
# if (binary)
# return (writeBinary (file_name, cloud, origin, orientation));
# else
# return (writeASCII (file_name, cloud, origin, orientation, 8));
# }
#
# /** \brief Save point cloud data to a PCD file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message (boost shared pointer)
# * \param[in] binary set to true if the file is to be written in a binary PCD format,
# * false (default) for ASCII
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# */
# inline int
# write (const std::string &file_name, const sensor_msgs::PointCloud2::ConstPtr &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# const bool binary = false)
# {
# return (write (file_name, *cloud, origin, orientation, binary));
# }
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in BINARY format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# */
# template <typename PointT> int
# writeBinary (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud);
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in BINARY format
# * \note This version is specialized for PointCloud<Eigen::MatrixXf> data types.
# * \attention The PCD data is \b always stored in ROW major format! The
# * read/write PCD methods will detect column major input and automatically convert it.
# *
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data
# */
# int
# writeBinaryEigen (const std::string &file_name,
# const pcl::PointCloud<Eigen::MatrixXf> &cloud);
#
# /** \brief Save point cloud data to a binary comprssed PCD file
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# */
# template <typename PointT> int
# writeBinaryCompressed (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud);
#
# /** \brief Save point cloud data to a binary comprssed PCD file.
# * \note This version is specialized for PointCloud<Eigen::MatrixXf> data types.
# * \attention The PCD data is \b always stored in ROW major format! The
# * read/write PCD methods will detect column major input and automatically convert it.
# *
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# */
# int
# writeBinaryCompressedEigen (const std::string &file_name,
# const pcl::PointCloud<Eigen::MatrixXf> &cloud);
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in BINARY format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] indices the set of point indices that we want written to disk
# */
# template <typename PointT> int
# writeBinary (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud,
# const std::vector<int> &indices);
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in ASCII format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] precision the specified output numeric stream precision (default: 8)
# */
# template <typename PointT> int
# writeASCII (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud,
# const int precision = 8);
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in ASCII format
# * \note This version is specialized for PointCloud<Eigen::MatrixXf> data types.
# * \attention The PCD data is \b always stored in ROW major format! The
# * read/write PCD methods will detect column major input and automatically convert it.
# *
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] precision the specified output numeric stream precision (default: 8)
# */
# int
# writeASCIIEigen (const std::string &file_name,
# const pcl::PointCloud<Eigen::MatrixXf> &cloud,
# const int precision = 8);
#
# /** \brief Save point cloud data to a PCD file containing n-D points, in ASCII format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] indices the set of point indices that we want written to disk
# * \param[in] precision the specified output numeric stream precision (default: 8)
# */
# template <typename PointT> int
# writeASCII (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud,
# const std::vector<int> &indices,
# const int precision = 8);
#
# /** \brief Save point cloud data to a PCD file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the pcl::PointCloud data
# * \param[in] binary set to true if the file is to be written in a binary
# * PCD format, false (default) for ASCII
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# */
# template<typename PointT> inline int
# write (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud,
# const bool binary = false)
# {
# if (binary)
# return (writeBinary<PointT> (file_name, cloud));
# else
# return (writeASCII<PointT> (file_name, cloud));
# }
#
# /** \brief Save point cloud data to a PCD file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the pcl::PointCloud data
# * \param[in] indices the set of point indices that we want written to disk
# * \param[in] binary set to true if the file is to be written in a binary
# * PCD format, false (default) for ASCII
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# */
# template<typename PointT> inline int
# write (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud,
# const std::vector<int> &indices,
# bool binary = false)
# {
# if (binary)
# return (writeBinary<PointT> (file_name, cloud, indices));
# else
# return (writeASCII<PointT> (file_name, cloud, indices));
# }
#
# private:
# /** \brief Set to true if msync() should be called before munmap(). Prevents data loss on NFS systems. */
# bool map_synchronization_;
#
# typedef std::pair<std::string, pcl::ChannelProperties> pair_channel_properties;
# /** \brief Internal structure used to sort the ChannelProperties in the
# * cloud.channels map based on their offset.
# */
# struct ChannelPropertiesComparator
# {
# bool
# operator()(const pair_channel_properties &lhs, const pair_channel_properties &rhs)
# {
# return (lhs.second.offset < rhs.second.offset);
# }
# };
# };
#
# namespace io
# {
# /** \brief Load a PCD v.6 file into a templated PointCloud type.
# *
# * Any PCD files > v.6 will generate a warning as a
# * sensor_msgs/PointCloud2 message cannot hold the sensor origin.
# *
# * \param[in] file_name the name of the file to load
# * \param[out] cloud the resultant templated point cloud
# * \ingroup io
# */
# inline int
# loadPCDFile (const std::string &file_name, sensor_msgs::PointCloud2 &cloud)
# {
# pcl::PCDReader p;
# return (p.read (file_name, cloud));
# }
#
# /** \brief Load any PCD file into a templated PointCloud type.
# * \param[in] file_name the name of the file to load
# * \param[out] cloud the resultant templated point cloud
# * \param[out] origin the sensor acquisition origin (only for > PCD_V7 - null if not present)
# * \param[out] orientation the sensor acquisition orientation (only for >
# * PCD_V7 - identity if not present)
# * \ingroup io
# */
# inline int
# loadPCDFile (const std::string &file_name, sensor_msgs::PointCloud2 &cloud,
# Eigen::Vector4f &origin, Eigen::Quaternionf &orientation)
# {
# pcl::PCDReader p;
# int pcd_version;
# return (p.read (file_name, cloud, origin, orientation, pcd_version));
# }
#
# /** \brief Load any PCD file into a templated PointCloud type
# * \param[in] file_name the name of the file to load
# * \param[out] cloud the resultant templated point cloud
# * \ingroup io
# */
# template<typename PointT> inline int
# loadPCDFile (const std::string &file_name, pcl::PointCloud<PointT> &cloud)
# {
# pcl::PCDReader p;
# return (p.read (file_name, cloud));
# }
#
# /** \brief Save point cloud data to a PCD file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# * \param[in] binary_mode true for binary mode, false (default) for ASCII
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# * \ingroup io
# */
# inline int
# savePCDFile (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# const bool binary_mode = false)
# {
# PCDWriter w;
# return (w.write (file_name, cloud, origin, orientation, binary_mode));
# }
#
# /** \brief Templated version for saving point cloud data to a PCD file
# * containing a specific given cloud format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] binary_mode true for binary mode, false (default) for ASCII
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# * \ingroup io
# */
# template<typename PointT> inline int
# savePCDFile (const std::string &file_name, const pcl::PointCloud<PointT> &cloud, bool binary_mode = false)
# {
# PCDWriter w;
# return (w.write<PointT> (file_name, cloud, binary_mode));
# }
#
# /**
# * \brief Templated version for saving point cloud data to a PCD file
# * containing a specific given cloud format.
# *
# * This version is to retain backwards compatibility.
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# * \ingroup io
# */
# template<typename PointT> inline int
# savePCDFileASCII (const std::string &file_name, const pcl::PointCloud<PointT> &cloud)
# {
# PCDWriter w;
# return (w.write<PointT> (file_name, cloud, false));
# }
#
# /**
# * \brief Templated version for saving point cloud data to a PCD file
# * containing a specific given cloud format.
# *
# * This version is to retain backwards compatibility.
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \ingroup io
# */
# template<typename PointT> inline int
# savePCDFileBinary (const std::string &file_name, const pcl::PointCloud<PointT> &cloud)
# {
# PCDWriter w;
# return (w.write<PointT> (file_name, cloud, true));
# }
#
# /**
# * \brief Templated version for saving point cloud data to a PCD file
# * containing a specific given cloud format
# *
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] indices the set of indices to save
# * \param[in] binary_mode true for binary mode, false (default) for ASCII
# *
# * Caution: PointCloud structures containing an RGB field have
# * traditionally used packed float values to store RGB data. Storing a
# * float as ASCII can introduce variations to the smallest bits, and
# * thus significantly alter the data. This is a known issue, and the fix
# * involves switching RGB data to be stored as a packed integer in
# * future versions of PCL.
# * \ingroup io
# */
# template<typename PointT> int
# savePCDFile (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud,
# const std::vector<int> &indices,
# const bool binary_mode = false)
# {
# // Save the data
# PCDWriter w;
# return (w.write<PointT> (file_name, cloud, indices, binary_mode));
# }
# }
###
# pcl_io_exception.h
# namespace pcl
# {
# /** \brief Base exception class for I/O operations
# * \ingroup io
# */
# class PCLIOException : public PCLException
# {
# public:
# /** \brief Constructor
# * \param[in] error_description a string describing the error
# * \param[in] file_name the name of the file where the exception was caused
# * \param[in] function_name the name of the method where the exception was caused
# * \param[in] line_number the number of the line where the exception was caused
# */
# PCLIOException (const std::string& error_description,
# const std::string& file_name = "",
# const std::string& function_name = "",
# unsigned line_number = 0)
# : PCLException (error_description, file_name, function_name, line_number)
# {
# }
# };
#
# /** \brief
# * \param[in] function_name the name of the method where the exception was caused
# * \param[in] file_name the name of the file where the exception was caused
# * \param[in] line_number the number of the line where the exception was caused
# * \param[in] format printf format
# * \ingroup io
# */
# inline void
# throwPCLIOException (const char* function_name, const char* file_name, unsigned line_number,
# const char* format, ...)
# {
# char msg[1024];
# va_list args;
# va_start (args, format);
# vsprintf (msg, format, args);
#
# throw PCLIOException (msg, file_name, function_name, line_number);
# }
#
###
# ply_io.h
# namespace pcl
# {
# /** \brief Point Cloud Data (PLY) file format reader.
# *
# * The PLY data format is organized in the following way:
# * lines beginning with "comment" are treated as comments
# * - ply
# * - format [ascii|binary_little_endian|binary_big_endian] 1.0
# * - element vertex COUNT
# * - property float x
# * - property float y
# * - [property float z]
# * - [property float normal_x]
# * - [property float normal_y]
# * - [property float normal_z]
# * - [property uchar red]
# * - [property uchar green]
# * - [property uchar blue] ...
# * - ascii/binary point coordinates
# * - [element camera 1]
# * - [property float view_px] ...
# * - [element range_grid COUNT]
# * - [property list uchar int vertex_indices]
# * - end header
# *
# * \author Nizar Sallem
# * \ingroup io
# */
# class PCL_EXPORTS PLYReader : public FileReader
# {
# public:
# enum
# {
# PLY_V0 = 0,
# PLY_V1 = 1
# };
#
# PLYReader ()
# : FileReader ()
# , parser_ ()
# , origin_ (Eigen::Vector4f::Zero ())
# , orientation_ (Eigen::Matrix3f::Zero ())
# , cloud_ ()
# , vertex_count_ (0)
# , vertex_properties_counter_ (0)
# , vertex_offset_before_ (0)
# , range_grid_ (0)
# , range_count_ (0)
# , range_grid_vertex_indices_element_index_ (0)
# , rgb_offset_before_ (0)
# {}
#
# PLYReader (const PLYReader &p)
# : parser_ ()
# , origin_ (Eigen::Vector4f::Zero ())
# , orientation_ (Eigen::Matrix3f::Zero ())
# , cloud_ ()
# , vertex_count_ (0)
# , vertex_properties_counter_ (0)
# , vertex_offset_before_ (0)
# , range_grid_ (0)
# , range_count_ (0)
# , range_grid_vertex_indices_element_index_ (0)
# , rgb_offset_before_ (0)
# {
# *this = p;
# }
#
# PLYReader& operator = (const PLYReader &p)
#
# ~PLYReader () { delete range_grid_; }
# /** \brief Read a point cloud data header from a PLY file.
# * Load only the meta information (number of points, their types, etc),
# * and not the points themselves, from a given PLY file. Useful for fast
# * evaluation of the underlying data structure.
# * Returns:
# * * < 0 (-1) on error
# * * > 0 on success
# * \param[in] file_name the name of the file to load
# * \param[out] cloud the resultant point cloud dataset (only the header will be filled)
# * \param[in] origin the sensor data acquisition origin (translation)
# * \param[in] orientation the sensor data acquisition origin (rotation)
# * \param[out] ply_version the PLY version read from the file
# * \param[out] data_type the type of PLY data stored in the file
# * \param[out] data_idx the data index
# * \param[in] offset the offset in the file where to expect the true header to begin.
# * One usage example for setting the offset parameter is for reading
# * data from a TAR "archive containing multiple files: TAR files always
# * add a 512 byte header in front of the actual file, so set the offset
# * to the next byte after the header (e.g., 513).
# */
# int readHeader (const std::string &file_name, sensor_msgs::PointCloud2 &cloud,
# Eigen::Vector4f &origin, Eigen::Quaternionf &orientation,
# int &ply_version, int &data_type, unsigned int &data_idx, const int offset = 0);
#
# /** \brief Read a point cloud data from a PLY file and store it into a sensor_msgs/PointCloud2.
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[in] origin the sensor data acquisition origin (translation)
# * \param[in] orientation the sensor data acquisition origin (rotation)
# * \param[out] ply_version the PLY version read from the file
# * \param[in] offset the offset in the file where to expect the true header to begin.
# * One usage example for setting the offset parameter is for reading
# * data from a TAR "archive containing multiple files: TAR files always
# * add a 512 byte header in front of the actual file, so set the offset
# * to the next byte after the header (e.g., 513).
# */
# int read (const std::string &file_name, sensor_msgs::PointCloud2 &cloud,
# Eigen::Vector4f &origin, Eigen::Quaternionf &orientation, int& ply_version, const int offset = 0);
#
# /** \brief Read a point cloud data from a PLY file (PLY_V6 only!) and store it into a sensor_msgs/PointCloud2.
# *
# * \note This function is provided for backwards compatibility only and
# * it can only read PLY_V6 files correctly, as sensor_msgs::PointCloud2
# * does not contain a sensor origin/orientation. Reading any file
# * > PLY_V6 will generate a warning.
# *
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[in] offset the offset in the file where to expect the true header to begin.
# * One usage example for setting the offset parameter is for reading
# * data from a TAR "archive containing multiple files: TAR files always
# * add a 512 byte header in front of the actual file, so set the offset
# * to the next byte after the header (e.g., 513).
# */
# inline int read (const std::string &file_name, sensor_msgs::PointCloud2 &cloud, const int offset = 0)
#
# /** \brief Read a point cloud data from any PLY file, and convert it to the given template format.
# * \param[in] file_name the name of the file containing the actual PointCloud data
# * \param[out] cloud the resultant PointCloud message read from disk
# * \param[in] offset the offset in the file where to expect the true header to begin.
# * One usage example for setting the offset parameter is for reading
# * data from a TAR "archive containing multiple files: TAR files always
# * add a 512 byte header in front of the actual file, so set the offset
# * to the next byte after the header (e.g., 513).
# */
# template<typename PointT> inline int
# read (const std::string &file_name, pcl::PointCloud<PointT> &cloud, const int offset = 0)
# {
# sensor_msgs::PointCloud2 blob;
# int ply_version;
# int res = read (file_name, blob, cloud.sensor_origin_, cloud.sensor_orientation_,
# ply_version, offset);
#
# // Exit in case of error
# if (res < 0)
# return (res);
# pcl::fromROSMsg (blob, cloud);
# return (0);
# }
#
# private:
# ::pcl::io::ply::ply_parser parser_;
#
# bool
# parse (const std::string& istream_filename);
#
# /** \brief Info callback function
# * \param[in] filename PLY file read
# * \param[in] line_number line triggering the callback
# * \param[in] message information message
# */
# void
# infoCallback (const std::string& filename, std::size_t line_number, const std::string& message)
#
# /** \brief Warning callback function
# * \param[in] filename PLY file read
# * \param[in] line_number line triggering the callback
# * \param[in] message warning message
# */
# void
# warningCallback (const std::string& filename, std::size_t line_number, const std::string& message)
#
# /** \brief Error callback function
# * \param[in] filename PLY file read
# * \param[in] line_number line triggering the callback
# * \param[in] message error message
# */
# void
# errorCallback (const std::string& filename, std::size_t line_number, const std::string& message)
#
# /** \brief function called when the keyword element is parsed
# * \param[in] element_name element name
# * \param[in] count number of instances
# */
# boost::tuple<boost::function<void ()>, boost::function<void ()> >
# elementDefinitionCallback (const std::string& element_name, std::size_t count);
#
# bool
# endHeaderCallback ();
#
# /** \brief function called when a scalar property is parsed
# * \param[in] element_name element name to which the property belongs
# * \param[in] property_name property name
# */
# template <typename ScalarType> boost::function<void (ScalarType)>
# scalarPropertyDefinitionCallback (const std::string& element_name, const std::string& property_name);
#
# /** \brief function called when a list property is parsed
# * \param[in] element_name element name to which the property belongs
# * \param[in] property_name list property name
# */
# template <typename SizeType, typename ScalarType>
# boost::tuple<boost::function<void (SizeType)>, boost::function<void (ScalarType)>, boost::function<void ()> >
# listPropertyDefinitionCallback (const std::string& element_name, const std::string& property_name);
#
# /** Callback function for an anonymous vertex float property.
# * Writes down a float value in cloud data.
# * param[in] value float value parsed
# */
# inline void
# vertexFloatPropertyCallback (pcl::io::ply::float32 value);
#
# /** Callback function for vertex RGB color.
# * This callback is in charge of packing red green and blue in a single int
# * before writing it down in cloud data.
# * param[in] color_name color name in {red, green, blue}
# * param[in] color value of {red, green, blue} property
# */
# inline void
# vertexColorCallback (const std::string& color_name, pcl::io::ply::uint8 color);
#
# /** Callback function for vertex intensity.
# * converts intensity from int to float before writing it down in cloud data.
# * param[in] intensity
# */
# inline void vertexIntensityCallback (pcl::io::ply::uint8 intensity);
#
# /** Callback function for origin x component.
# * param[in] value origin x value
# */
# inline void originXCallback (const float& value)
#
# /** Callback function for origin y component.
# * param[in] value origin y value
# */
# inline void originYCallback (const float& value)
#
# /** Callback function for origin z component.
# * param[in] value origin z value
# */
# inline void originZCallback (const float& value)
#
# /** Callback function for orientation x axis x component.
# * param[in] value orientation x axis x value
# */
# inline void orientationXaxisXCallback (const float& value)
#
# /** Callback function for orientation x axis y component.
# * param[in] value orientation x axis y value
# */
# inline void orientationXaxisYCallback (const float& value)
#
# /** Callback function for orientation x axis z component.
# * param[in] value orientation x axis z value
# */
# inline void orientationXaxisZCallback (const float& value)
#
# /** Callback function for orientation y axis x component.
# * param[in] value orientation y axis x value
# */
# inline void orientationYaxisXCallback (const float& value)
#
# /** Callback function for orientation y axis y component.
# * param[in] value orientation y axis y value
# */
# inline void orientationYaxisYCallback (const float& value)
#
# /** Callback function for orientation y axis z component.
# * param[in] value orientation y axis z value
# */
# inline void orientationYaxisZCallback (const float& value)
#
# /** Callback function for orientation z axis x component.
# * param[in] value orientation z axis x value
# */
# inline void orientationZaxisXCallback (const float& value)
#
# /** Callback function for orientation z axis y component.
# * param[in] value orientation z axis y value
# */
# inline void orientationZaxisYCallback (const float& value)
#
# /** Callback function for orientation z axis z component.
# * param[in] value orientation z axis z value
# */
# inline void orientationZaxisZCallback (const float& value)
#
# /** Callback function to set the cloud height
# * param[in] height cloud height
# */
# inline void cloudHeightCallback (const int &height)
#
# /** Callback function to set the cloud width
# * param[in] width cloud width
# */
# inline void cloudWidthCallback (const int &width)
#
# /** Append a float property to the cloud fields.
# * param[in] name property name
# * param[in] count property count: 1 for scalar properties and higher for a
# * list property.
# void appendFloatProperty (const std::string& name, const size_t& count = 1);
#
# /** Callback function for the begin of vertex line */
# void vertexBeginCallback ();
#
# /** Callback function for the end of vertex line */
# void vertexEndCallback ();
#
# /** Callback function for the begin of range_grid line */
# void rangeGridBeginCallback ();
#
# /** Callback function for the begin of range_grid vertex_indices property
# * param[in] size vertex_indices list size
# */
# void rangeGridVertexIndicesBeginCallback (pcl::io::ply::uint8 size);
#
# /** Callback function for each range_grid vertex_indices element
# * param[in] vertex_index index of the vertex in vertex_indices
# */
# void rangeGridVertexIndicesElementCallback (pcl::io::ply::int32 vertex_index);
#
# /** Callback function for the end of a range_grid vertex_indices property */
# void rangeGridVertexIndicesEndCallback ();
#
# /** Callback function for the end of a range_grid element end */
# void rangeGridEndCallback ();
#
# /** Callback function for obj_info */
# void objInfoCallback (const std::string& line);
#
# /// origin
# Eigen::Vector4f origin_;
# /// orientation
# Eigen::Matrix3f orientation_;
# //vertex element artifacts
# sensor_msgs::PointCloud2 *cloud_;
# size_t vertex_count_, vertex_properties_counter_;
# int vertex_offset_before_;
# //range element artifacts
# std::vector<std::vector <int> > *range_grid_;
# size_t range_count_, range_grid_vertex_indices_element_index_;
# size_t rgb_offset_before_;
# public:
# EIGEN_MAKE_ALIGNED_OPERATOR_NEW
# };
#
# /** \brief Point Cloud Data (PLY) file format writer.
# * \author Nizar Sallem
# * \ingroup io
# */
# class PCL_EXPORTS PLYWriter : public FileWriter
# {
# public:
# ///Constructor
# PLYWriter () : FileWriter () {};
#
# ///Destructor
# ~PLYWriter () {};
#
# /** \brief Generate the header of a PLY v.7 file format
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor data acquisition origin (translation)
# * \param[in] orientation the sensor data acquisition origin (rotation)
# * \param[in] valid_points number of valid points (finite ones for range_grid and
# * all of them for camer)
# * \param[in] use_camera if set to true then PLY file will use element camera else
# * element range_grid will be used.
# */
# inline std::string
# generateHeaderBinary (const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin,
# const Eigen::Quaternionf &orientation,
# int valid_points,
# bool use_camera = true)
#
# /** \brief Generate the header of a PLY v.7 file format
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor data acquisition origin (translation)
# * \param[in] orientation the sensor data acquisition origin (rotation)
# * \param[in] valid_points number of valid points (finite ones for range_grid and
# * all of them for camer)
# * \param[in] use_camera if set to true then PLY file will use element camera else
# * element range_grid will be used.
# */
# inline std::string
# generateHeaderASCII (const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin,
# const Eigen::Quaternionf &orientation,
# int valid_points,
# bool use_camera = true)
#
# /** \brief Save point cloud data to a PLY file containing n-D points, in ASCII format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor data acquisition origin (translation)
# * \param[in] orientation the sensor data acquisition origin (rotation)
# * \param[in] precision the specified output numeric stream precision (default: 8)
# * \param[in] use_camera if set to true then PLY file will use element camera else
# * element range_grid will be used.
# */
# int
# writeASCII (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# int precision = 8,
# bool use_camera = true);
#
# /** \brief Save point cloud data to a PLY file containing n-D points, in BINARY format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor data acquisition origin (translation)
# * \param[in] orientation the sensor data acquisition origin (rotation)
# */
# int
# writeBinary (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity ());
#
# /** \brief Save point cloud data to a PLY file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# * \param[in] binary set to true if the file is to be written in a binary
# * PLY format, false (default) for ASCII
# */
# inline int
# write (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# const bool binary = false)
#
# /** \brief Save point cloud data to a PLY file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# * \param[in] binary set to true if the file is to be written in a binary
# * PLY format, false (default) for ASCII
# * \param[in] use_camera set to true to used camera element and false to
# * use range_grid element
# */
# inline int
# write (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# bool binary = false,
# bool use_camera = true)
#
# /** \brief Save point cloud data to a PLY file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message (boost shared pointer)
# * \param[in] origin the sensor acquisition origin
# * \param[in] orientation the sensor acquisition orientation
# * \param[in] binary set to true if the file is to be written in a binary
# * PLY format, false (default) for ASCII
# * \param[in] use_camera set to true to used camera element and false to
# * use range_grid element
# */
# inline int
# write (const std::string &file_name, const sensor_msgs::PointCloud2::ConstPtr &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# bool binary = false,
# bool use_camera = true)
#
# /** \brief Save point cloud data to a PLY file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the pcl::PointCloud data
# * \param[in] binary set to true if the file is to be written in a binary
# * PLY format, false (default) for ASCII
# * \param[in] use_camera set to true to used camera element and false to
# * use range_grid element
# */
# template<typename PointT> inline int
# write (const std::string &file_name,
# const pcl::PointCloud<PointT> &cloud,
# bool binary = false,
# bool use_camera = true)
# };
#
# namespace io
# {
# /** \brief Load a PLY v.6 file into a templated PointCloud type.
# *
# * Any PLY files containg sensor data will generate a warning as a
# * sensor_msgs/PointCloud2 message cannot hold the sensor origin.
# *
# * \param[in] file_name the name of the file to load
# * \param[in] cloud the resultant templated point cloud
# * \ingroup io
# */
# inline int
# loadPLYFile (const std::string &file_name, sensor_msgs::PointCloud2 &cloud)
#
# /** \brief Load any PLY file into a templated PointCloud type.
# * \param[in] file_name the name of the file to load
# * \param[in] cloud the resultant templated point cloud
# * \param[in] origin the sensor acquisition origin (only for > PLY_V7 - null if not present)
# * \param[in] orientation the sensor acquisition orientation if availble,
# * identity if not present
# * \ingroup io
# */
# inline int
# loadPLYFile (const std::string &file_name, sensor_msgs::PointCloud2 &cloud,
# Eigen::Vector4f &origin, Eigen::Quaternionf &orientation)
#
# /** \brief Load any PLY file into a templated PointCloud type
# * \param[in] file_name the name of the file to load
# * \param[in] cloud the resultant templated point cloud
# * \ingroup io
# */
# template<typename PointT> inline int
# loadPLYFile (const std::string &file_name, pcl::PointCloud<PointT> &cloud)
#
# /** \brief Save point cloud data to a PLY file containing n-D points
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] origin the sensor data acquisition origin (translation)
# * \param[in] orientation the sensor data acquisition origin (rotation)
# * \param[in] binary_mode true for binary mode, false (default) for ASCII
# * \ingroup io
# */
# inline int
# savePLYFile (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud,
# const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
# const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
# bool binary_mode = false, bool use_camera = true)
#
# /** \brief Templated version for saving point cloud data to a PLY file
# * containing a specific given cloud format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] binary_mode true for binary mode, false (default) for ASCII
# * \ingroup io
# */
# template<typename PointT> inline int
# savePLYFile (const std::string &file_name, const pcl::PointCloud<PointT> &cloud, bool binary_mode = false)
#
# /** \brief Templated version for saving point cloud data to a PLY file
# * containing a specific given cloud format.
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \ingroup io
# */
# template<typename PointT> inline int
# savePLYFileASCII (const std::string &file_name, const pcl::PointCloud<PointT> &cloud)
#
# /** \brief Templated version for saving point cloud data to a PLY file containing a specific given cloud format.
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \ingroup io
# */
# template<typename PointT> inline int
# savePLYFileBinary (const std::string &file_name, const pcl::PointCloud<PointT> &cloud)
#
# /** \brief Templated version for saving point cloud data to a PLY file containing a specific given cloud format
# * \param[in] file_name the output file name
# * \param[in] cloud the point cloud data message
# * \param[in] indices the set of indices to save
# * \param[in] binary_mode true for binary mode, false (default) for ASCII
# * \ingroup io
# */
# template<typename PointT> int
# savePLYFile (const std::string &file_name, const pcl::PointCloud<PointT> &cloud,
# const std::vector<int> &indices, bool binary_mode = false)
#
# /** \brief Saves a PolygonMesh in ascii PLY format.
# * \param[in] file_name the name of the file to write to disk
# * \param[in] mesh the polygonal mesh to save
# * \param[in] precision the output ASCII precision default 5
# * \ingroup io
# */
# PCL_EXPORTS int
# savePLYFile (const std::string &file_name, const pcl::PolygonMesh &mesh, unsigned precision = 5);
# }
###
# tar.h
# namespace pcl
# {
# namespace io
# {
# /** \brief A TAR file's header, as described on
# * http://en.wikipedia.org/wiki/Tar_%28file_format%29.
# */
# struct TARHeader
# {
# char file_name[100];
# char file_mode[8];
# char uid[8];
# char gid[8];
# char file_size[12];
# char mtime[12];
# char chksum[8];
# char file_type[1];
# char link_file_name[100];
# char ustar[6];
# char ustar_version[2];
# char uname[32];
# char gname[32];
# char dev_major[8];
# char dev_minor[8];
# char file_name_prefix[155];
# char _padding[12];
#
# unsigned int
# getFileSize ()
# {
# unsigned int output = 0;
# char *str = file_size;
# for (int i = 0; i < 11; i++)
# {
# output = output * 8 + *str - '0';
# str++;
# }
# return (output);
# }
# };
# }
# }
###
# vtk_io.h
# namespace pcl
# namespace io
# /** \brief Saves a PolygonMesh in ascii VTK format.
# * \param[in] file_name the name of the file to write to disk
# * \param[in] triangles the polygonal mesh to save
# * \param[in] precision the output ASCII precision
# * \ingroup io
# */
# PCL_EXPORTS int
# saveVTKFile (const std::string &file_name, const pcl::PolygonMesh &triangles, unsigned precision = 5);
#
# /** \brief Saves a PointCloud in ascii VTK format.
# * \param[in] file_name the name of the file to write to disk
# * \param[in] cloud the point cloud to save
# * \param[in] precision the output ASCII precision
# * \ingroup io
# */
# PCL_EXPORTS int
# saveVTKFile (const std::string &file_name, const sensor_msgs::PointCloud2 &cloud, unsigned precision = 5);
#
###
# vtk_lib_io.h
# namespace pcl
# namespace io
# /** \brief Convert vtkPolyData object to a PCL PolygonMesh
# * \param[in] poly_data Pointer (vtkSmartPointer) to a vtkPolyData object
# * \param[out] mesh PCL Polygon Mesh to fill
# * \return Number of points in the point cloud of mesh.
# */
# PCL_EXPORTS int
# vtk2mesh (const vtkSmartPointer<vtkPolyData>& poly_data,
# pcl::PolygonMesh& mesh);
#
# /** \brief Convert a PCL PolygonMesh to a vtkPolyData object
# * \param[in] mesh Reference to PCL Polygon Mesh
# * \param[out] poly_data Pointer (vtkSmartPointer) to a vtkPolyData object
# * \return Number of points in the point cloud of mesh.
# */
# PCL_EXPORTS int
# mesh2vtk (const pcl::PolygonMesh& mesh,
# vtkSmartPointer<vtkPolyData>& poly_data);
#
# /** \brief Load a \ref PolygonMesh object given an input file name, based on the file extension
# * \param[in] file_name the name of the file containing the polygon data
# * \param[out] mesh the object that we want to load the data in
# * \ingroup io
# */
# PCL_EXPORTS int
# loadPolygonFile (const std::string &file_name,
# pcl::PolygonMesh& mesh);
#
# /** \brief Save a \ref PolygonMesh object given an input file name, based on the file extension
# * \param[in] file_name the name of the file to save the data to
# * \param[in] mesh the object that contains the data
# * \ingroup io
# */
# PCL_EXPORTS int
# savePolygonFile (const std::string &file_name,
# const pcl::PolygonMesh& mesh);
#
# /** \brief Load a VTK file into a \ref PolygonMesh object
# * \param[in] file_name the name of the file that contains the data
# * \param[out] mesh the object that we want to load the data in
# * \ingroup io
# */
# PCL_EXPORTS int
# loadPolygonFileVTK (const std::string &file_name,
# pcl::PolygonMesh& mesh);
#
# /** \brief Load a PLY file into a \ref PolygonMesh object
# * \param[in] file_name the name of the file that contains the data
# * \param[out] mesh the object that we want to load the data in
# * \ingroup io
# */
# PCL_EXPORTS int
# loadPolygonFilePLY (const std::string &file_name,
# pcl::PolygonMesh& mesh);
#
# /** \brief Load an OBJ file into a \ref PolygonMesh object
# * \param[in] file_name the name of the file that contains the data
# * \param[out] mesh the object that we want to load the data in
# * \ingroup io
# */
# PCL_EXPORTS int
# loadPolygonFileOBJ (const std::string &file_name,
# pcl::PolygonMesh& mesh);
#
# /** \brief Load an STL file into a \ref PolygonMesh object
# * \param[in] file_name the name of the file that contains the data
# * \param[out] mesh the object that we want to load the data in
# * \ingroup io
# */
# PCL_EXPORTS int
# loadPolygonFileSTL (const std::string &file_name,
# pcl::PolygonMesh& mesh);
#
# /** \brief Save a \ref PolygonMesh object into a VTK file
# * \param[in] file_name the name of the file to save the data to
# * \param[in] mesh the object that contains the data
# * \ingroup io
# */
# PCL_EXPORTS int
# savePolygonFileVTK (const std::string &file_name,
# const pcl::PolygonMesh& mesh);
#
# /** \brief Save a \ref PolygonMesh object into a PLY file
# * \param[in] file_name the name of the file to save the data to
# * \param[in] mesh the object that contains the data
# * \ingroup io
# */
# PCL_EXPORTS int
# savePolygonFilePLY (const std::string &file_name,
# const pcl::PolygonMesh& mesh);
#
# /** \brief Save a \ref PolygonMesh object into an STL file
# * \param[in] file_name the name of the file to save the data to
# * \param[in] mesh the object that contains the data
# * \ingroup io
# */
# PCL_EXPORTS int
# savePolygonFileSTL (const std::string &file_name,
# const pcl::PolygonMesh& mesh);
#
# /** \brief Write a \ref RangeImagePlanar object to a PNG file
# * \param[in] file_name the name of the file to save the data to
# * \param[in] range_image the object that contains the data
# * \ingroup io
# */
# PCL_EXPORTS void
# saveRangeImagePlanarFilePNG (const std::string &file_name,
# const pcl::RangeImagePlanar& range_image);
#
# /** \brief Convert a pcl::PointCloud object to a VTK PolyData one.
# * \param[in] cloud the input pcl::PointCloud object
# * \param[out] polydata the resultant VTK PolyData object
# * \ingroup io
# */
# template <typename PointT> void
# pointCloudTovtkPolyData (const pcl::PointCloud<PointT>& cloud,
# vtkPolyData* const polydata);
#
# /** \brief Convert a pcl::PointCloud object to a VTK StructuredGrid one.
# * \param[in] cloud the input pcl::PointCloud object
# * \param[out] structured_grid the resultant VTK StructuredGrid object
# * \ingroup io
# */
# template <typename PointT> void
# pointCloudTovtkStructuredGrid (const pcl::PointCloud<PointT>& cloud,
# vtkStructuredGrid* const structured_grid);
#
# /** \brief Convert a VTK PolyData object to a pcl::PointCloud one.
# * \param[in] polydata the input VTK PolyData object
# * \param[out] cloud the resultant pcl::PointCloud object
# * \ingroup io
# */
# template <typename PointT> void
# vtkPolyDataToPointCloud (vtkPolyData* const polydata,
# pcl::PointCloud<PointT>& cloud);
#
# /** \brief Convert a VTK StructuredGrid object to a pcl::PointCloud one.
# * \param[in] structured_grid the input VTK StructuredGrid object
# * \param[out] cloud the resultant pcl::PointCloud object
# * \ingroup io
# */
# template <typename PointT> void
# vtkStructuredGridToPointCloud (vtkStructuredGrid* const structured_grid,
# pcl::PointCloud<PointT>& cloud);
#
#
###
|