Metadata-Version: 2.1
Name: docdetect
Version: 2019.1.1
Summary: Real-time detection of documents in images.
Home-page: https://github.com/alessandrozamberletti/docdetect
Author: alez
Author-email: alez.pypi@gmail.com
License: MIT
Keywords: docdetect document-detection rectangle-detection edge-detection
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering :: Image Recognition
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: opencv-python

# docdetect

[![Build Status](https://travis-ci.org/alessandrozamberletti/docdetect.svg?branch=master)](https://travis-ci.org/alessandrozamberletti/docdetect)
[![Build status](https://ci.appveyor.com/api/projects/status/l1gjc8g7c1q3846j/branch/master?svg=true)](https://ci.appveyor.com/project/alessandrozamberletti/docdetect/branch/master)
[![codecov](https://codecov.io/gh/alessandrozamberletti/docdetect/branch/master/graph/badge.svg)](https://codecov.io/gh/alessandrozamberletti/docdetect)
[![Maintainability](https://api.codeclimate.com/v1/badges/a9aa496faab72437e650/maintainability)](https://codeclimate.com/github/alessandrozamberletti/docdetect/maintainability)

<p align="center"> 
  <img src="./res/01.gif" alt="sample_01"/>
  <img src="./res/02.gif" alt="sample_02"/>
  <img src="./res/03.gif" alt="sample_03"/>
</p>

# Installation

TBD

# Examples

```python
import docdetect

rects = docdetect.process(image)
image = docdetect.draw(rects, image)
```

# Resources  
* [Fast and Accurate Document Detection for Scanning](https://blogs.dropbox.com/tech/2016/08/fast-and-accurate-document-detection-for-scanning/)


