Metadata-Version: 2.1
Name: videotosmi-server
Version: 0.0.1
Summary: Create a smi file in Web based on the video
Home-page: https://github.com/Sotaneum/VideoToSMI-Server
Author: Donggun LEE
Author-email: gnyotnu39@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown

# VideoToSMI-Server
Create a smi file in Web based on the video
- Copyright (c) 2019 [InfoLab](http://infolab.kunsan.ac.kr) ([Donggun LEE](http://duration.digimoon.net))
- How to install
    ```bash
    pip install VideoToSMI-Server # This method will soon be supported.
    ```
    - other version
        ```bash
        # 0.0.1
        pip install VideoToSMI-Server==0.0.1 # This method will soon be supported.
        ```
- How to use
    ```python
    from VideoToSMI-Server import Server, ServerConfig

    config = ServerConfig()
    config.MODEL_NAME = "mscoco"
    config.IP = "127.0.0.1"
    config.PORT=80
    config.MODEL_CONFIG_PATH = "D:/test/config.json"
    config.MODEL_ENGINE = "maskrcnn"
    config.FILTER = ['truck','car','bus']
    config.VIDEO_FOLDER = "D:/test/videotosmi/"
    server = Server(config)
    server.Run()

    # POST VIDEO FILE -> http://127.0.0.1:80/ -> Reulst SMI FILE
    ```

