Skip to content

Commit 6cc7ac0

Browse files
authored
pcv.pcv, version
1 parent ea94a52 commit 6cc7ac0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_________________________________
2-
Version: 1.0.1
2+
Version: 1.0.2
33
Author: ES Alexander
44
Release Date: 28/Jul/2020
55
_________________________________
@@ -81,7 +81,7 @@ If using a video file to simulate a live camera stream, use `SlowCamera` or
8181
## Examples
8282
### Basic Camera Stream
8383
```python
84-
from pcv import Camera, channel_options, downsize
84+
from pcv.pcv import Camera, channel_options, downsize
8585

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

9999
### Stream and Record
100100
```python
101-
from pcv import Camera
101+
from pcv.pcv import Camera
102102

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

108108
### VideoReader
109109
```python
110-
from pcv import VideoReader, downsize
110+
from pcv.pcv import VideoReader, downsize
111111

112112
# just play (simple)
113113
with VideoReader('my_vid.mp4') as vid:

0 commit comments

Comments
 (0)