Skip to content

Commit

Permalink
pcv.pcv, version
Browse files Browse the repository at this point in the history
  • Loading branch information
ES-Alexander authored Jul 28, 2020
1 parent ea94a52 commit 6cc7ac0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_________________________________
Version: 1.0.1
Version: 1.0.2
Author: ES Alexander
Release Date: 28/Jul/2020
_________________________________
Expand Down Expand Up @@ -81,7 +81,7 @@ If using a video file to simulate a live camera stream, use `SlowCamera` or
## Examples
### Basic Camera Stream
```python
from pcv import Camera, channel_options, downsize
from pcv.pcv import Camera, channel_options, downsize

# start streaming camera 0 (generally laptop webcam/primary camera), and destroy 'frame'
# window (default streaming window) when finished.
Expand All @@ -98,7 +98,7 @@ with LockedCamera(0, display='channels',

### Stream and Record
```python
from pcv import Camera
from pcv.pcv import Camera

with Camera(0) as cam:
print("press 'q' to quit and stop recording.")
Expand All @@ -107,7 +107,7 @@ with Camera(0) as cam:

### VideoReader
```python
from pcv import VideoReader, downsize
from pcv.pcv import VideoReader, downsize

# just play (simple)
with VideoReader('my_vid.mp4') as vid:
Expand Down

0 comments on commit 6cc7ac0

Please sign in to comment.