Metadata-Version: 2.1
Name: EMS-analyzer
Version: 0.0.3
Summary: trainer network model for transferring image
Author-email: Yonghoon Kim <csyhkim@silla.ac.kr>
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE


# EMS-analyzer
EMS(electronic monitoring system)-analyzer is collecting the image data and detecting the object
using Yolo. And stitching the images which is already detected image of consist to quadrant image.
And it train the this images


## Installing

Install from PyPI

    pip install EMS-analyzer

## Usage

1. Setting and run Server ans Client

```python
from EMS-analyzer import Server
Server.init(ip_addr='server_ip'
            ,h0=['ha','hb','hc','hd']
            ,s0=['sa','sb','sc','sd'])
class_name, model=init_yolo()
Server.main(class_name, model)

from EMS-analyzer import Client
Client.main(ip_addr='sever_ip', input_image='image or video')

```

## TODO
