Metadata-Version: 2.1
Name: videorotation
Version: 0.1.1
Summary: A module to analyze video rotation.
Home-page: https://github.com/pavloshargan/VideoRotationAnalysis
Author: Pavlo Sharhan
Author-email: activetechinnovators@example.com
Description-Content-Type: text/markdown
Requires-Dist: opencv-python
Requires-Dist: numpy
Requires-Dist: tensorflow

### VideoRotation estimation using RotNet cnn, ref: https://github.com/d4nst/RotNet <br>


## Setup: <br>

```
python3 -m pip install .
```
## Pre-requirements: <br>
ffmpeg is required <br>


## Usage: <br>
```
from videorotation import VideoRotationAnalysis
with VideoRotationAnalysis(frames_per_video=12) as analysis:
    result, angles = analysis.check_if_upsidedown_for_video(video_path)
    print((result,angles))
```
