Metadata-Version: 2.1
Name: coordinate-estimate
Version: 0.1.2
Summary: A Python library to calculate GPS coordinates from detected points in images.
Author: ittipat jitrada
Author-email: Ittipat jitrada <ittipatjitrada@gmail.com>
License: COSI
Project-URL: Homepage, https://github.com/ITPATJIDR/Coordinate_Calculator
Description-Content-Type: text/markdown
License-File: LICENSE

# Object Position Calculator

This library helps calculate the geographical position of detected objects using camera parameters and object detection results.

## Installation

```bash
pip install object-position-calculator
```

### Example
```python
from object_position_calculator import DroneYOLOClient

if __name__ == "__main__":
    client = DroneYOLOClient("http://10.109.68.49:8000", "best.pt")
    client.connect()
    client.send_message_to_server("Hello, world from YOLO!")
    client.send_drone_command("capture_img")
    client.wait()
```

