summaryrefslogtreecommitdiffstats
path: root/Demo/sgi
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-09-24 16:53:51 (GMT)
committerGuido van Rossum <guido@python.org>1992-09-24 16:53:51 (GMT)
commitd65f45da26e8216c8b149dc237f34214b1eec9f3 (patch)
tree222b9984092d7f25b22044a1d44473ae84fdb284 /Demo/sgi
parentcfb6bb2a3036b366aff6add44dce23a6db5b8f50 (diff)
downloadcpython-d65f45da26e8216c8b149dc237f34214b1eec9f3.zip
cpython-d65f45da26e8216c8b149dc237f34214b1eec9f3.tar.gz
cpython-d65f45da26e8216c8b149dc237f34214b1eec9f3.tar.bz2
Added resizevideo() interface to LiveVideoIn and rationalized size
adjustments (somewhat). Adapted Vsend to use it.
Diffstat (limited to 'Demo/sgi')
-rwxr-xr-xDemo/sgi/video/LiveVideoIn.py57
-rwxr-xr-xDemo/sgi/video/Vsend.py4
2 files changed, 38 insertions, 23 deletions
diff --git a/Demo/sgi/video/LiveVideoIn.py b/Demo/sgi/video/LiveVideoIn.py
index 920123d..66cd649 100755
--- a/Demo/sgi/video/LiveVideoIn.py
+++ b/Demo/sgi/video/LiveVideoIn.py
@@ -27,20 +27,26 @@ except ImportError:
class LiveVideoIn:
- # Initialize an instance.
- # Parameters:
- # - vw, vh specify the size of the video window.
- # This initializes continuous capture.
+ # Initialize an instance. Arguments:
+ # vw, vh: size of the video window data to be captured.
+ # For some reason, vw MUST be a multiples of 4.
+ # Note that the data has to be cropped unless vw and vh are
+ # just right for the video board (vw:vh == 4:3 and vh even).
def init(self, pktmax, vw, vh):
if not have_video:
raise RuntimeError, 'no video available'
+ if vw % 4 != 0:
+ raise ValueError, 'vw must be a multiple of 4'
+ self.pktmax = pktmax
realvw = vh*SV.PAL_XMAX/SV.PAL_YMAX
if realvw < vw:
- print 'Funny, image too narrow...'
+ realvw = vw
self.realwidth, self.realheight = v.QuerySize(realvw, vh)
- ##print 'Recording video in size', \
- ## self.realwidth, self.realheight
+ # Initialize capture
+ (mode, self.realwidth, self.realheight, qsize, rate) = \
+ v.InitContinuousCapture(SV.RGB8_FRAMES, \
+ self.realwidth, self.realheight, 1, 5)
self.width = vw
self.height = vh
self.x0 = (self.realwidth-self.width)/2
@@ -50,15 +56,22 @@ class LiveVideoIn:
# Compute # full lines per packet
self.lpp = pktmax / self.width
self.pktsize = self.lpp*self.width
- ##print 'lpp =', self.lpp, '; pktsize =', self.pktsize
- # Initialize capture
- v.SetSize(self.realwidth, self.realheight)
- dummy = v.InitContinuousCapture(SV.RGB8_FRAMES, \
- self.realwidth, self.realheight, 1, 5)
self.data = None
+ self.dataoffset = 0
self.lpos = 0
+ self.justright = (self.realwidth == self.width and \
+ self.realheight == self.height)
+## if not self.justright:
+## print 'Want:', self.width, 'x', self.height,
+## print '; grab:', self.realwidth, 'x', self.realheight
return self
+ # Change the size of the video being displayed.
+
+ def resizevideo(self, vw, vh):
+ self.close()
+ self = self.init(self.pktmax, vw, vh)
+
# Remove an instance.
# This turns off continuous capture.
@@ -75,21 +88,25 @@ class LiveVideoIn:
# - number of scan lines = self.lpp (PKTMAX / vw)
def getnextpacket(self):
- if not self.data:
+ if not self.data or self.dataoffset >= len(self.data):
try:
cd, id = v.GetCaptureData()
except sv.error:
return None
data = cd.InterleaveFields(1)
cd.UnlockCaptureData()
- self.data = imageop.crop(data, 1, \
- self.realwidth, \
- self.realheight, \
- self.x0, self.y0, \
- self.x1, self.y1)
+ if self.justright:
+ self.data = data
+ else:
+ self.data = imageop.crop(data, 1, \
+ self.realwidth, \
+ self.realheight, \
+ self.x0, self.y0, \
+ self.x1, self.y1)
self.lpos = 0
- data = self.data[:self.pktsize]
- self.data = self.data[self.pktsize:]
+ self.dataoffset = 0
+ data = self.data[self.dataoffset:self.dataoffset+self.pktsize]
lpos = self.lpos
+ self.dataoffset = self.dataoffset + self.pktsize
self.lpos = self.lpos + self.lpp
return lpos, data
diff --git a/Demo/sgi/video/Vsend.py b/Demo/sgi/video/Vsend.py
index 543cd86..54554c2 100755
--- a/Demo/sgi/video/Vsend.py
+++ b/Demo/sgi/video/Vsend.py
@@ -118,10 +118,8 @@ def main():
w, h = gl.getsize()
x, y = gl.getorigin()
if (w, h) <> (width, height):
- lvi.close()
width, height = w, h
- lvi = LiveVideoIn.LiveVideoIn() \
- .init(pktmax, width, height)
+ lvi.resizevideo(width, height)
lvo.resizevideo(width, height)
rv = lvi.getnextpacket()