├── .github ├── release-drafter.yml └── workflows │ ├── release-drafter.yaml │ ├── test.yaml │ └── update-contributors.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── CONTRIBUTORS.md ├── COPYRIGHT.txt ├── LICENSE.txt ├── README.md ├── pyproject.toml ├── requirements-dev.lock ├── requirements.lock ├── src └── pypcd4 │ ├── __init__.py │ ├── pointcloud2.py │ ├── py.typed │ └── pypcd4.py └── tests ├── conftest.py ├── pcd ├── ascii.pcd ├── ascii_empty.pcd ├── ascii_invalid_header.pcd ├── ascii_multi_count.pcd ├── ascii_organized.pcd ├── ascii_with_empty_points.pcd ├── ascii_with_underscore.pcd ├── binary.pcd ├── binary_compressed.pcd └── binary_compressed_organized.pcd └── test └── test_pypcd4.py /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/.github/workflows/release-drafter.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/update-contributors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/.github/workflows/update-contributors.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10.14 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/requirements-dev.lock -------------------------------------------------------------------------------- /requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/requirements.lock -------------------------------------------------------------------------------- /src/pypcd4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/src/pypcd4/__init__.py -------------------------------------------------------------------------------- /src/pypcd4/pointcloud2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/src/pypcd4/pointcloud2.py -------------------------------------------------------------------------------- /src/pypcd4/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pypcd4/pypcd4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/src/pypcd4/pypcd4.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pcd/ascii.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/pcd/ascii.pcd -------------------------------------------------------------------------------- /tests/pcd/ascii_empty.pcd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pcd/ascii_invalid_header.pcd: -------------------------------------------------------------------------------- 1 | # .PCD v.7 - Point Cloud Data file format 2 | VERSION .7 3 | FIEL 4 | -------------------------------------------------------------------------------- /tests/pcd/ascii_multi_count.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/pcd/ascii_multi_count.pcd -------------------------------------------------------------------------------- /tests/pcd/ascii_organized.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/pcd/ascii_organized.pcd -------------------------------------------------------------------------------- /tests/pcd/ascii_with_empty_points.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/pcd/ascii_with_empty_points.pcd -------------------------------------------------------------------------------- /tests/pcd/ascii_with_underscore.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/pcd/ascii_with_underscore.pcd -------------------------------------------------------------------------------- /tests/pcd/binary.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/pcd/binary.pcd -------------------------------------------------------------------------------- /tests/pcd/binary_compressed.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/pcd/binary_compressed.pcd -------------------------------------------------------------------------------- /tests/pcd/binary_compressed_organized.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/pcd/binary_compressed_organized.pcd -------------------------------------------------------------------------------- /tests/test/test_pypcd4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapIV/pypcd4/HEAD/tests/test/test_pypcd4.py --------------------------------------------------------------------------------