Skip to content

Commit ca07d3e

Browse files
committed
Merge pull request #3 from PolygonalTree/master
Pull request to merge pySolo-VIdeo-RpiMod with PySolo-Video
2 parents 2c18142 + 71a74c8 commit ca07d3e

16 files changed

+811
-1
lines changed

accessories/DesktopApp/receive_stream.py

+2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ def open_with_socket():
3636
# Connect a client socket to my_server:8000 (change my_server to the
3737
# hostname of your server)
3838
client_socket = socket.socket()
39+
3940
client_socket.connect(('192.168.1.201', 8000))
41+
4042
connection = client_socket.makefile('rb')
4143

4244
try:

accessories/__init__.pyc

173 Bytes
Binary file not shown.
170 Bytes
Binary file not shown.
7.62 KB
Binary file not shown.
Binary file not shown.

mask.msk

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"referencePoints": "none", "pointsToTrack": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "serial": "NO_SERIAL", "ROIS": [[[16, 52], [16, 452], [790, 452], [790, 52]], [[16, 52], [16, 78], [403, 78], [403, 52]], [[16, 78], [16, 104], [403, 104], [403, 78]], [[16, 102], [16, 128], [403, 128], [403, 102]], [[16, 128], [16, 153], [403, 153], [403, 128]], [[16, 153], [16, 179], [403, 179], [403, 153]], [[16, 177], [16, 203], [403, 203], [403, 177]], [[16, 203], [16, 228], [403, 228], [403, 203]], [[16, 227], [16, 252], [403, 252], [403, 227]], [[16, 252], [16, 278], [403, 278], [403, 252]], [[16, 278], [16, 304], [403, 304], [403, 278]], [[16, 302], [16, 328], [403, 328], [403, 302]], [[16, 328], [16, 353], [403, 353], [403, 328]], [[16, 353], [16, 379], [403, 379], [403, 353]], [[16, 377], [16, 403], [403, 403], [403, 377]], [[16, 403], [16, 428], [403, 428], [403, 403]], [[16, 427], [16, 452], [403, 452], [403, 427]], [[403, 52], [403, 78], [790, 78], [790, 52]], [[403, 78], [403, 104], [790, 104], [790, 78]], [[403, 102], [403, 128], [790, 128], [790, 102]], [[403, 128], [403, 153], [790, 153], [790, 128]], [[403, 153], [403, 179], [790, 179], [790, 153]], [[403, 177], [403, 203], [790, 203], [790, 177]], [[403, 203], [403, 228], [790, 228], [790, 203]], [[403, 227], [403, 252], [790, 252], [790, 227]], [[403, 252], [403, 278], [790, 278], [790, 252]], [[403, 278], [403, 304], [790, 304], [790, 278]], [[403, 302], [403, 328], [790, 328], [790, 302]], [[403, 328], [403, 353], [790, 353], [790, 328]], [[403, 353], [403, 379], [790, 379], [790, 353]], [[403, 377], [403, 403], [790, 403], [790, 377]], [[403, 403], [403, 428], [790, 428], [790, 403]], [[403, 427], [403, 452], [790, 452], [790, 427]]]}

pysolo_video.cfg

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[Folders]
2+
data_folder = .
3+
mask_folder = .
4+
5+
[Recording]
6+
fps_recording = 15
7+
fps_preview = 5
8+
resolution = 1280, 720
9+
10+
[General]
11+
webcams = 1
12+
monitors = 1
13+
14+
[Monitor1]
15+
source = 1
16+
track = 0
17+
mask_file =
18+
track_type = XY_COORDS
19+
serial_port = NO SD
20+
inactivity_threshold = 7
21+
outputfile =
22+

pysolovide.zip

17.5 KB
Binary file not shown.

pysolovideo.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# MA 02110-1301, USA.
2222
#
2323
#
24-
"""Version 1.3
24+
"""Version 1.4
2525
2626
Each Monitor has a camera that can be: realCam || VirtualCamMovies || VirtualCamFrames
2727
The class Monitor is handling the motion detection and data processing while the class Cam only handles
@@ -191,13 +191,23 @@ def startNetworkStream(self, port=8000):
191191
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
192192
self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
193193
self.socket.bind(('', port))
194+
<<<<<<< HEAD
195+
print ("Live stream socket listening on port {p}...".format(p=port))
196+
=======
194197
print "Live stream socket listening on port {p}...".format(p=port)
198+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
195199
self.pipe = None
196200

197201
self.socket.listen(5)
198202

199203
self.socket_thread_1 = threading.Thread(target=self.socket_listen)
204+
<<<<<<< HEAD
205+
self.socket_thread_1.daemon=True
200206
self.socket_thread_2 = threading.Thread(target=self.socket_stream)
207+
self.socket_thread_2.daemon=True
208+
=======
209+
self.socket_thread_2 = threading.Thread(target=self.socket_stream)
210+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
201211
self.keepSocket = True
202212

203213
self.socket_thread_1.start()

rPI/restartScript.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from subprocess import call
2+
3+
call(["ps axf | grep server.py | grep -v grep | awk '{print \"kill -2 \" $1}' | sh"],shell=True)
4+
5+
call(["python2 server.py"],shell=True)

rPI/server.py

+45
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
import db
2+
<<<<<<< HEAD
3+
import zipfile
4+
import glob
5+
from subprocess import call
6+
=======
7+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
28
from bottle import *
39

410
from os import path
511
import json
12+
<<<<<<< HEAD
13+
import zipfile
14+
import glob
15+
=======
16+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
617

718
os.sys.path.append("..")
819
from pvg_headless import pvg_cli
@@ -15,7 +26,11 @@ def __init__(self):
1526
rois = []
1627
trackingType = 0
1728

29+
<<<<<<< HEAD
30+
@app.get('/favicon.ico')
31+
=======
1832
@get('/favicon.ico')
33+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
1934
def get_favicon():
2035
return server_static(path.join(basedir,'static/img/favicon.ico'))
2136

@@ -92,7 +107,11 @@ def starStop():
92107
db.writeMask(data)
93108

94109
#start a python thread and begins tracking
110+
<<<<<<< HEAD
111+
print ("tracking type", data['trackingType'])
112+
=======
95113
print "tracking type", data['trackingType']
114+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
96115
pysolo_headless.setTracking(track_type=data['trackingType'], mask_file="mask.msk", output_file=outputfile)
97116
pysolo_headless.startTracking()
98117

@@ -150,7 +169,33 @@ def poweroff(machineID):
150169
if isTracking():
151170
startStop()
152171
off = call("poweroff")
172+
<<<<<<< HEAD
173+
174+
@app.post('/update')
175+
def do_update():
176+
177+
if isTracking():
178+
startStop()
179+
#close sockets
180+
pysolo_headless.mon.cam.stopNetworkStream()
181+
182+
data = request.files.data
183+
184+
if data and data.file:
185+
filename = data.filename
186+
with open(filename,'wb') as open_file:
187+
open_file.write(data.file.read())
188+
with zipfile.ZipFile(data.filename, "r") as z:
189+
z.extractall()
190+
for hgx in glob.glob(data.filename):
191+
os.remove(hgx)
192+
193+
#change this for a service restart:
194+
return call(["python3 restartScript.py"],shell=True)
195+
196+
=======
153197

198+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
154199
"""helpers methods."""
155200

156201
def isTracking():

rPI/static/js/main.js

+23
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,29 @@ app.controller('poweroffCtrl',['$scope', '$http',function($scope,$http){
396396
}
397397
};
398398
}]);
399+
<<<<<<< HEAD
400+
app.controller('uploadCtrl',['$scope', '$http',function($scope,$http){
401+
$scope.upload = function(){
402+
var ext = $('#data').val().split('.').pop().toLowerCase();
403+
404+
if (confirm("WARNING: updating the package will stop tracking. Do you wish to continue?")) {
405+
if($.inArray(ext, ['zip']) == -1) {
406+
alert('File must be in .zip format.');
407+
return false;
408+
} else {
409+
var form_data = new FormData($('#upload-file')[0]);
410+
console.log(form_data);
411+
$http.post("/update", form_data, { headers: {"Content-type" : "application/x-www-form-urlencoded; charset=utf-8";}}).success(function(data) {
412+
setTimeout(function() {alert("File uploaded successfully. Please restart tracking.")}, 5000);
413+
});
414+
}
415+
} else {
416+
return false;
417+
}
418+
};
419+
}]);
420+
=======
421+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
399422

400423
})();
401424

rPI/views/index.tpl

+45
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@
2222
<link rel="stylesheet" href="static/css/main.css">
2323

2424
<script src="static/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
25+
<<<<<<< HEAD
26+
<script></script>
27+
=======
2528

29+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
2630

2731
</head>
2832
<body ng-app="fly">
@@ -38,7 +42,11 @@
3842
<span class="icon-bar"></span>
3943
<span class="icon-bar"></span>
4044
</button>
45+
<<<<<<< HEAD
46+
<span class="navbar-brand" >PySolo ControlPanel:</span><a id="machineid" class="navbar-brand" href="" ng-click="changeName()" data-toggle="tooltip" data-placement="right" title="Click to edit">{{machineId}}</a>
47+
=======
4148
<span class="navbar-brand" > PySolo ControlPanel:</span><a id="machineid" class="navbar-brand" href="" ng-click="changeName()" data-toggle="tooltip" data-placement="right" title="Click to edit">{{machineId}}</a>
49+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
4250

4351
</div>
4452
<div class="navbar-collapse collapse">
@@ -50,20 +58,33 @@
5058
<input type="password" placeholder="Password" class="form-control">
5159
</div>
5260
<button type="submit" class="btn btn-success">Sign in</button>
61+
<<<<<<< HEAD
62+
=======
5363
<img src='static/img/logo.png' height=30>
64+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
5465
</form>
5566
</div><!--/.navbar-collapse -->
5667
</div>
5768
</div>
5869

5970
<!-- Main jumbotron for a primary marketing message or call to action -->
71+
<<<<<<< HEAD
72+
<div class="jumbotron">
73+
<div class="container text-center">
74+
<div class="row">
75+
<h2>PySolo-Video Browser editor</h2>
76+
<div id="ROI-input" class="col-md-12">
77+
<canvas id="ROIView" width="500" height="300"></canvas>
78+
<!--<canvas id="drawingCanvas" width="500" height="3i00"></canvas>-->
79+
=======
6080
<div class="snapshot">
6181
<div class="container text-center">
6282
<div class="row">
6383
<h2>Camera Snapshot</h2>
6484
<div id="ROI-input" class="col-md-12">
6585
<canvas id="ROIView" width="500" height="375"></canvas>
6686
<!--<canvas id="drawingCanvas" width="500" height="300"></canvas>-->
87+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
6788
</div>
6889
</div>
6990
<div class="row ">
@@ -93,7 +114,11 @@
93114
<div class="col-md-4">
94115
<h2>Refresh</h2>
95116
<p>Click Here to refresh the camera image</p>
117+
<<<<<<< HEAD
118+
<p><button type="submit" id="refreshBackground" class="btn btn-default" href="#" role="button" action="/refresh" method="get">Refresh</button></p>
119+
=======
96120
<p><button type="button" id="refreshBackground"class="btn btn-default" href="#" role="button">Refresh</button></p>
121+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
97122
</div>
98123
%if status == True:
99124
<div class="col-md-4">
@@ -203,7 +228,22 @@
203228
</div>
204229
</div>
205230
<hr>
231+
<<<<<<< HEAD
232+
233+
<div class = "col-md-12" ng-controller="uploadCtrl">
234+
<form id="upload-file" method="post" enctype="multipart/form-data">
235+
<div class="form-group">
236+
<input type="file" name="data" id="data" />
237+
<p class="help-block">Select version to upload.</p>
238+
</div>
239+
<button ng-click="upload()" type="button" class="btn btn-default btn-sm" id="upload-file-btn">Submit</button>
240+
</form>
241+
</div>
242+
<hr>
243+
244+
=======
206245

246+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
207247
<footer>
208248
<p>&copy; Polygonal Tree 2014</p>
209249
</footer>
@@ -216,6 +256,11 @@
216256
$('#machineid').tooltip();
217257
$('#autoMask').tooltip();
218258
</script>
259+
<<<<<<< HEAD
260+
261+
262+
=======
263+
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
219264
</body>
220265
</html>
221266

0 commit comments

Comments
 (0)