Metadata-Version: 2.1
Name: LRGpy
Version: 0.0.1
Summary: LRG Python code repsository.
Home-page: https://github.com/GMU-LRG/LRGpy
Author: Lattanzi Research Group
Author-email: dlattanz@gmu.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown
Requires-Dist: scikit-learn

# 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 that are custom implementations of research papers, PCL functions, and CloudCompare utilities.

## Installation

Run the following to install:

```python
pip instal LRGpy
```

## Usage

```python
# Import entire LRGpy module:
import LRGpy

# Generate a point cloud from CloudCompare txt
cloud = LRGpy.PointCloudFromTxt("./cloud.txt")
```

```python
# Alternatively, import one function into your own namespace:
from LRGpy import PointCloudFromTxt

# Generate a point cloud from CloudCompare txt
cloud = PointCloudFromTxt("./cloud.txt")
```


