Metadata-Version: 2.1
Name: auto-util
Version: 0.1
Summary: A command line tool for image matching
Home-page: https://github.com/auto-flutter/auto_util
License: Apache License 2.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.4,<3.8
Description-Content-Type: text/markdown
Requires-Dist: six
Requires-Dist: click
Requires-Dist: Pillow (>=3.4.0)
Requires-Dist: numpy (<=1.19.3)
Requires-Dist: opencv-contrib-python (==3.4.2.16)

# Auto Util

A command line tool for image matching.

## Install

```
pip install auto_util  #(3.7>=python>=3.4)
```

## Usage
```
auto_util match --help
```
```
Usage: auto_util match [OPTIONS]

  Result: 0 is Ok -101 is Fail -102 is Error

Options:
  --src TEXT         Source image path  [required]
  --search TEXT      The path of the image to be matched  [required]
  --threshold FLOAT  Confidence threshold
  --methods TEXT     Matching algorithm, can pass in multiple
                     [tpl,kaze,brisk,akaze,orb,sift,surf,brief]

  --help             Show this message and exit.
```


