planktoscope/pipeline/pipeline.php

8 lines
166 B
PHP
Raw Normal View History

2019-12-11 00:28:55 +01:00
<?php
2019-12-11 02:23:15 +01:00
$nb_step = $_REQUEST["nb_step"];
$orientation = $_REQUEST["orientation"];
2019-12-11 00:28:55 +01:00
2019-12-11 02:23:15 +01:00
$output = shell_exec('/usr/bin/python3 pipeline.py '.$nb_step.' '.$orientation);
2019-12-11 00:28:55 +01:00
?>