web-dev-qa-db-fra.com

Exécuter un script python dans Laravel

Donc, j'essaye de lancer un script python dans mon Laravel 5.3.

Cette fonction est à l'intérieur de mon contrôleur. Cela passe simplement des données à mon script python

public function imageSearch(Request $request) {
    $queryImage = 'c:\\\xampp\\\htdocs\\\identificare_api\\\public\\\gallery\\\herbs\\\query.png'; //queryImage
    $trainImage = 'c:\\\xampp\\\htdocs\\\identificare_api\\\public\\\gallery\\\herbs\\\2nd.png'; //trainImage
    $trainImage1 = 'c:\\\xampp\\\htdocs\\\identificare_api\\\public\\\gallery\\\herbs\\\3rd.png';
    $trainImage2 = 'c:\\\xampp\\\htdocs\\\identificare_api\\\public\\\gallery\\\herbs\\\4th.jpg';
    $trainImage3 = 'c:\\\xampp\\\htdocs\\\identificare_api\\\public\\\gallery\\\herbs\\\1st.jpg';

    $data = array
        (
            array(0, $queryImage),
            array(1, $trainImage),
            array(3, $trainImage1),
            array(5, $trainImage2),
            array(7, $trainImage3),
        );

    $count= count($data);
    $a = 1;
    $string = "";

    foreach( $data as $d){
        $string .= $d[0] . '-' . $d[1];

        if($a < $count){
            $string .= ","; 
        }
        $a++;

    }

    $result = Shell_exec("C:\Python27\python c:\xampp\htdocs\identificare_api\app\http\controllers\ORB\orb.py " . escapeshellarg($string));

    echo $result;
}

Mon script python est un algorithme ORB dans lequel il renvoie la plus petite distance et son identifiant après avoir comparé les images du train à l'image de la requête. Donc, voici mon script Python:

import cv2
import sys
import json
from matplotlib import pyplot as plt

arrayString = sys.argv[1].split(",")

final = []

for i in range(len(arrayString)):
    final.append(arrayString[i].split("-"))

img1 = cv2.imread(final[0][1], 0)

for i in range(1, len(arrayString)):

    img2 = cv2.imread(final[i][1], 0)

    # Initiate STAR detector
    orb = cv2.ORB_create()

    # find the keypoints and descriptors with SIFT
    kp1, des1 = orb.detectAndCompute(img1,None)
    kp2, des2 = orb.detectAndCompute(img2,None)

    # create BFMatcher object
    bf = cv2.BFMatcher(cv2.NORM_HAMMING, crossCheck=True)

    # Match descriptors.
    matches = bf.match(des1,des2)

    # Sort them in the order of their distance.
    matches = sorted(matches, key = lambda x:x.distance)

    # Draw first 10 matches.
    img3 = cv2.drawMatches(img1,kp1,img2,kp2,matches[:10], None, flags=2)

    if i == 1:
       distance = matches[0].distance
    else:
       if distance > matches[0].distance:
           distance = matches[0].distance
           smallestID = final[i][0]

print str(smallestID) + "-" + json.dumps(distance)

J'ai déjà essayé d'exécuter les deux fichiers sans utiliser Laravel et cela fonctionne bien. Mais quand j'ai essayé d'intégrer le code php à mon Laravel, il n'affiche rien. Le code d'état est 200 OK.

EDIT: Problème résolu. Dans le code PHP, il suffit de changer

$result = Shell_exec("C:\Python27\python c:\xampp\htdocs\identificare_api\app\http\controllers\ORB\orb.py " . escapeshellarg($string));

à 

$result = Shell_exec("python " . app_path(). "\http\controllers\ORB\orb.py " . escapeshellarg($string));

alors, vous pouvez aussi faire comme ça

$queryImage = public_path() . "\gallery\herbs\query.png";
8
Carriane Lastimoso

Utilisez le processus Symfony. https://symfony.com/doc/current/components/process.html

Installer:

composer require symfony/process

Code:

use Symfony\Component\Process\Process;
use Symfony\Component\Process\Exception\ProcessFailedException;

$process = new Process('python /path/to/your_script.py');
$process->run();

// executes after the command finishes
if (!$process->isSuccessful()) {
    throw new ProcessFailedException($process);
}

echo $process->getOutput();
14
Mowshon

La solution qui a fonctionné pour moi a été d’ajouter 2> & 1 à la fin. 

Shell_exec("python path/to/script.py 2>&1");

Le problème que je rencontrais n'était pas une erreur ni une réponse, je n'avais pas le bon chemin d'accès au script mais aucun moyen de le savoir. 2> & 1 redirige les informations de débogage vers le résultat.

Dans la coquille, que signifie "2> & 1"?

0
Chawker21