Metadata-Version: 2.1
Name: VideoToSMI-Server
Version: 0.0.2
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
Description: # 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
            ```
            - other version
                ```bash
                # 0.0.2
                pip install VideoToSMI-Server==0.0.2
                ```
        - How to use
            ```python
            from VideoToSMIServer 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
            ```
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
