-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfb6d42
commit f8599ee
Showing
6 changed files
with
73 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Metadata-Version: 2.1 | ||
Name: pythonic-cv | ||
Version: 1.1.6 | ||
Version: 1.1.7 | ||
Summary: Performant pythonic wrapper of unnecessarily painful opencv functionality | ||
Home-page: https://github.com/ES-Alexander/pythonic-cv | ||
Author: ES-Alexander | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Description: _________________________________ | ||
Version: 1.1.6 | ||
Version: 1.1.7 | ||
Author: ES Alexander | ||
Release Date: 17/Oct/2020 | ||
Release Date: 22/Dec/2020 | ||
_________________________________ | ||
|
||
# About | ||
|
@@ -27,7 +27,7 @@ Description: _________________________________ | |
This library requires an existing version of `OpenCV` with Python bindings to be | ||
installed (e.g. `python3 -m pip install opencv-python`). Some features (mainly | ||
property access helpers) may not work for versions of OpenCV earlier than 4.2.0. | ||
The library was tested using Python 3.7.2, and is expected to work down to at least | ||
The library was tested using Python 3.8.5, and is expected to work down to at least | ||
Python 3.4 (although the integrated advanced features example uses matmul (@) for | ||
some processing, which was introduced in Python 3.5). | ||
|
||
|
@@ -83,6 +83,10 @@ Description: _________________________________ | |
If using a video file to simulate a live camera stream, use `SlowCamera` or | ||
`LockedCamera` - `Camera` will skip frames. | ||
|
||
There is also a `GuaranteedVideoWriter` class which guarantees the output framerate by | ||
repeating frames when given input too slowly, and skipping frames when input is too | ||
fast. | ||
|
||
## Overview | ||
![Overview of classes diagram](https://github.com/ES-Alexander/pythonic-cv/blob/master/Overview.png) | ||
|
||
|