Created
August 18, 2021 19:04
-
-
Save harinduravin/2a96ce86829280e0f6dcb5aa85e0b4fa to your computer and use it in GitHub Desktop.
Streamer ROS node to implement a flask server to initiate video streaming
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Created on Aug 13 2021 | |
""" | |
import os | |
import numpy as np | |
import cv2 | |
import time | |
import rospy | |
import threading | |
from flask import Flask, render_template, Response, redirect | |
from sensor_msgs.msg import Image as SensorImage | |
frame_count = 0 | |
frame = None | |
# Add a file path of a blank image here, in order to avoid this variable being empty at the | |
# beginning | |
_frame = open('Add a file path for a blank image', 'rb').read() | |
app = Flask(__name__) | |
def image_callback(data): | |
global frame, frame_count, _frame | |
if frame is not None: | |
_frame = cv2.imencode('.jpg', cv2.resize(frame, (400,225)))[1].tobytes() | |
frame = np.frombuffer(data.data, dtype=np.uint8).reshape(data.height, data.width, -1) | |
frame_count += 1 | |
#This should be done to avoid the flask server conflicting with the node | |
threading.Thread(target=lambda: rospy.init_node('visualizer',anonymous=True, disable_signals=True)).start() | |
rospy.Subscriber('/input_frame', SensorImage, image_callback) | |
@app.route('/') | |
def index(): | |
"""Video streaming home page.""" | |
return render_template('player.html') | |
def gen(): | |
global _frame | |
"""Video streaming generator function.""" | |
while True: | |
# The time delay value should be equal to the 1/FPS value | |
time.sleep(0.1) | |
yield (b'--frame\r\n' | |
b'Content-Type: image/jpeg\r\n\r\n' + _frame + b'\r\n') | |
@app.route('/video_feed') | |
def video_feed(): | |
"""Video streaming route. Put this in the src attribute of an img tag.""" | |
return Response(gen(), | |
mimetype='multipart/x-mixed-replace; boundary=frame') | |
if __name__ == '__main__': | |
app.run(host='0.0.0.0', debug=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment