Mettez en œuvre les éléments suivants: ・ Lancez la caméra Web dans le navigateur ・ Capturez l'image de l'écran de l'appareil photo -Envoyer l'image capturée au serveur et l'enregistrer
/home/capture_img
|--run.py
|--app
| |--api.py
| |--service.py
| |--static
| | |--main.js
| |--templates
| | |--index.html
|--images #Où enregistrer l'image capturée
run.py
run.py
from app.api import api
if __name__ == '__main__':
api.run(host='0.0.0.0', port=8000)
app/api.py
app/api.py
from flask import Flask, request, make_response, render_template, url_for
from . import service
api = Flask(__name__)
@api.route('/', methods=['GET'])
def index():
return render_template('index.html')
@api.route('/capture_img', methods=['POST'])
def capture_img():
msg = service.save_img(request.form["img"])
return make_response(msg)
app/service.py
app/service.py
import base64
import numpy as np
import cv2
def save_img(img_base64):
#binary <- string base64
img_binary = base64.b64decode(img_base64)
#jpg <- binary
img_jpg=np.frombuffer(img_binary, dtype=np.uint8)
#raw image <- jpg
img = cv2.imdecode(img_jpg, cv2.IMREAD_COLOR)
#Chemin pour enregistrer l'image décodée
image_file="/home/capture_img/images/img0000.jpg "
#Enregistrer l'image
cv2.imwrite(image_file, img)
return "SUCCESS"
templates/index.html
templates/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>get_capture</title>
</head>
<body>
<h3>Obtenez une capture en appuyant sur la touche espace</h3>
<video id="video" width="640" height="480" autoplay></video>
<canvas id="canvas" class="canvas-wrapper"></canvas>
</body>
<script src="{{url_for('static', filename='main.js')}}"></script>
<style>
/*Masquer la toile*/
#canvas {
display: none !important;
}
</style>
</html>
static/main.js
static/main.js
var video = document.getElementById('video');
// getUserMedia()Obtenez des images de la caméra avec
var media = navigator.mediaDevices.getUserMedia({ video: true });
//Versez dans les tags vidéo pour une lecture en temps réel (streaming)
media.then((stream) => {
video.srcObject = stream;
});
var canvas = document.getElementById('canvas');
canvas.setAttribute('width', video.width);
canvas.setAttribute('height', video.height);
video.addEventListener(
'timeupdate',
function () {
var context = canvas.getContext('2d');
context.drawImage(video, 0, 0, video.width, video.height);
},
true
);
//Configurez l'auditeur pour qu'il exécute l'acquisition de capture lorsque la touche espace est enfoncée
document.addEventListener('keydown', (event) => {
var keyName = event.key;
if (keyName === ' ') {
console.log(`keydown: SpaceKey`);
context = canvas.getContext('2d');
//Retirez la tête des données base64 acquises
var img_base64 = canvas.toDataURL('image/jpeg').replace(/^.*,/, '')
captureImg(img_base64);
}
});
var xhr = new XMLHttpRequest();
//Données d'image capturées(base64)PUBLIER
function captureImg(img_base64) {
const body = new FormData();
body.append('img', img_base64);
xhr.open('POST', 'http://localhost:8000/capture_img', true);
xhr.onload = () => {
console.log(xhr.responseText)
};
xhr.send(body);
}
root@ed9f7bedad16:/# pip install opencv-python flask
root@ed9f7bedad16:/# python /home/capture_img/run.py
* Serving Flask app "app.api" (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
* Running on http://0.0.0.0:8000/ (Press CTRL+C to quit)
root@ed9f7bedad16:/# ls /home/capture_img/images/
img0000.jpg
L'image capturée a été enregistrée.
c'est tout.