https://github.com/cwi-dis/cwipc_util

CWI Point cloud object utility library

https://github.com/cwi-dis/cwipc_util

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.3%) to scientific vocabulary
Last synced: 9 months ago · JSON representation

Repository

CWI Point cloud object utility library

Basic Info
  • Host: GitHub
  • Owner: cwi-dis
  • License: mit
  • Language: Python
  • Default Branch: master
  • Size: 5.26 MB
Statistics
  • Stars: 2
  • Watchers: 6
  • Forks: 3
  • Open Issues: 7
  • Releases: 1
Created over 7 years ago · Last pushed 10 months ago
Metadata Files
Readme License

readme.md

CWI Pointcloud utility library

This repository is a utility library for using cwipc objects to represent pointclouds. It is part of the cwipc suite, https://github.com/cwi-dis/cwipc, and should generally be installed or built as part of that suite.

General design considerations

The idea behind a cwipc pointcloud object is that it represents a pointcloud (with x/y/z coordinates, r/g/b values and possibly information on which camera angle the point was captured from) without having to include the whole PCL Point Cloud Library API if you do not need it.

the idea is that you can pass a cwipc object around without knowing what is inside it, and if the receiving end also has PCL knowledge it can access the pointcloud data without it having been copied. And if a receiver does need access to the individual point data it will only be copied when it arrives there (so a receiver can allocate buffers in the right type of memory, etc).

The current design document is in pointcloud-api.md.

The library contains utility functions to read and write a cwipc object from a .ply file. There are also functions to read/write the binary representation of a cwipc but these are mainly for debugging (the binary representation is not portable between machines).

Bindings for C, C++ and Python are included. C# bindings are not currently included, ask us.

Owner

  • Name: cwi-dis
  • Login: cwi-dis
  • Kind: organization
  • Location: Amsterdam, the Netherlands

CWI Distributed and Interactive Systems Group

GitHub Events

Total
  • Delete event: 4
  • Push event: 134
  • Create event: 7
Last Year
  • Delete event: 4
  • Push event: 134
  • Create event: 7

Dependencies

python/setup.py pypi
  • Pillow *
  • numpy *
  • open3d *