~alanbell/+junk/camcontrol

« back to all changes in this revision

Viewing changes to map.py

  • Committer: Alan Bell
  • Date: 2012-10-12 09:53:22 UTC
  • Revision ID: alanbell@ubuntu.com-20121012095322-s0lzuxrw721ubs09
initial commit of somewhat working camera controler

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# -*- coding:utf-8 -*-
 
3
#printing out stuff like:
 
4
#  <area shap="rect" alt="North West" coords="0,0,200,150" href="#" title="North West">
 
5
 
 
6
print """<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
7
<head>
 
8
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
 
9
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
 
10
<script language="javascript">
 
11
function camgoto(x,y)
 
12
{
 
13
 $.get('camcontrol.py?gox=' + x + '&goy=' + y);
 
14
}
 
15
</script>
 
16
 
 
17
</head>
 
18
<body>
 
19
<h1>Camera Control</h1>
 
20
<p>Click anywhere on the image to centre (roughly) that bit of the image.</p>
 
21
<a style="float:right;" href="http://www.amazon.co.uk/gp/product/B00432J56G/ref=as_li_ss_il?ie=UTF8&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B00432J56G&amp;linkCode=as2&amp;tag=theopesou-21"><img src="http://ws.assoc-amazon.co.uk/widgets/q?_encoding=UTF8&amp;ASIN=B00432J56G&amp;Format=_SL160_&amp;ID=AsinImage&amp;MarketPlace=GB&amp;ServiceVersion=20070822&amp;WS=1&amp;tag=theopesou-21" alt="" border="0" /><br/>The thing I bought (with evil affiliate code)</a> 
 
22
 
 
23
<img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=theopesou-21&amp;l=as2&amp;o=2&amp;a=B00432J56G" alt="" width="1" height="1" border="0" />
 
24
 
 
25
 
 
26
<p>This is based on a £35 wireless pan and tilt camera, but with a bit of python running on a separate web server
 
27
to control it. The mjpeg video stream is direct from the camera and it has a clickable imagemap overlay
 
28
which chops up the image into 40px squares. Clicking a square requests a simple web service running on
 
29
a computer close to the camera which starts the camera moving and stops it again after a fraction of a second
 
30
multiplied by the number of pixels it needs to move. The camera itself has no absolute or relative positioning,
 
31
it is just done by careful timing of the start and stop signals.</p>
 
32
<p>The camera can move in diagonal directions, it would be nice to get it to smoothly move to a new location smoothly
 
33
first by panning and tilting, then the rest of the way on one axis. Might be nice to have something round the
 
34
outside of the image to allow you to move double the distance, at the moment you can move a half frame in one click
 
35
would be nice to be able to go a whole frame away.</p>
 
36
<p>The camera stream has a maximum of 4 concurrent viewers, a few more if I
 
37
drop the resolution to 320x200. For lots of viewers I would use ffmpeg to reencode from mjpeg to something else
 
38
on the fly and possibly pass it to a streaming server of some kind, the overlay control should work
 
39
just as it is over a multicast video stream. In reality, if you are expecting more than a couple of concurrent
 
40
viewers they are going to argue over control too much.</p>
 
41
 
 
42
<img src="http://guest:guest@ubingo.libertus.co.uk:9090/videostream.cgi" usemap="#navmap"/>
 
43
<map name="navmap">"""
 
44
 
 
45
for x in range(0,640,40):
 
46
  for y in range(0,480,40):
 
47
    print '  <area shape="rect" alt="%d,%d" title="%d,%d" coords="%d,%d,%d,%d" onclick="camgoto(%d,%d)">' % (x-320,y-240,x-320,y-240,x,y,x+40,y+40,x-320,240-y)
 
48
 
 
49
 
 
50
print """</map>
 
51
</body>
 
52
</html>"""
 
53