LRGpy

LRG Python code repsository.


License
MIT
Install
pip install LRGpy==0.0.3

Documentation

LRGpy

LRGpy is a collection of Python code used by the Lattanzi Research Code at George Mason University. This package currently consists of point cloud utilities derived from research papers, CloudCompare utilities, and PCL functions.

Installation

Run the following to install:

pip install LRGpy

Example Usage

Generate a point cloud from a comma separated text file (such as a CloudCompare output):

# Import the entire LRGpy module:
import LRGpy

cloud = LRGpy.PointCloudFromTxt("./cloud.txt")
# Alternatively, import just one function into your own namespace:
from LRGpy import PointCloudFromTxt

cloud = PointCloudFromTxt("./cloud.txt")

Hello WOrld Documentation

Use LRGpy.HelloWorld() to quickly print "Hello!" to the console

from LRGpy import HelloWorld()
LRGpy.HelloWorld()