Using a webcam with Node-RED

Guide to integrating webcam features into Node-RED applications.

Back to Blog Posts
Image representing null

Dashboard 2.0 just got its first third-party webcam widget that simplifies integrating webcam features with Node-RED applications. In this guide, we will show you how you can use the ui-webcam widget in your Node-RED applications.

Additionally, if you are willing to develop your own third-party widget, we have our example widget which helps you develop your widget. Additionally for a detailed step-by-step guide refer to Building Third Party Widgets.

Install Node-RED Dashboard 2.0. Follow these instructions to get started.

Using a webcam custom widget

Once Dashboard 2.0 is installed, proceed to install the ui-webcam widget:

  1. Install @sumit_shinde_84/node-red-dashboard-2-ui-webcam by the palette manager.
  2. Select a created group for the ui-webcam widget in which it will render.
  3. Deploy the flow by clicking on the top-right red deploy button.

Inner Workings of the Webcam Widget

In this section, we will take a closer look at the inner workings of the webcam widget. The widget is built using Vue.js and provides a highly engaging and interactive user interface that follows Node-RED and Dashboard 2.0 standards. To enable webcam functionality, the widget makes use of the MediaDevices API, which facilitates access to connected media input devices like cameras and microphones.

Capturing images using controls

This webcam widget offers nice interactive controls that will allow you to interact with the webcam easily.

  1. Navigate to the dashboard by accessing https://<your-instance-name>.flowfuse.cloud/dashboard.
  2. Initially, you'll see a black interface with a power button on the dashboard. Clicking this button will activate the webcam. Ensure that you grant permission to the dashboard to access your webcam.
  3. Once the webcam is active, you can capture images by clicking the button with the camera icon located at the bottom center of the webcam interface.
  4. The widget returns a Base64 string containing the captured image in PNG format.

"capturing images using webcam widget controls"

Capturing images by passing payload

  1. Drag an inject node onto the canvas.
  2. Set msg.payload to capture as string. You can also set an interval time to automatically send the message after a specific interval, or you can keep it unchanged to manually send the payload by clicking the inject button.
  3. Connect the output of the inject node to the input of the webcam widget.
  4. Deploy the flow.

By passing the "capture" string as payload, the webcam widget will activate (if it's off) and capture images automatically, without requiring user interaction. This method is commonly used in industrial applications which depend on automated actions.

"capturing images by passing payload"

Selecting different camera devices

The webcam widget also allows you to select different camera devices connected to your system:

  1. Click on the ellipsis icon located at the top-right corner of the webcam interface.
  2. A dropdown menu will display the connected cameras. Select your preferred camera to use. Additionally, you can turn off the camera by selecting the "Turn camera off" option.

"selecting different camera"

Browser support and privacy

  • Browser Compatibility: The webcam widget is compatible with all modern browsers, except Internet Explorer. Whether you're using Chrome, Firefox, Safari, or Edge, you can seamlessly integrate webcam features into your Node-RED applications.
  • Control Limitation: It's important to note that this widget is designed to interact with webcams directly accessible to the system running Node-RED. For example, if the webcam is connected to a different device or network and not directly accessible to the Node-RED running system, the video stream from that webcam won't be displayed on a dashboard using this widget.
  • HTTPS Requirement: When accessing Dashboard 2.0 remotely (not via localhost), it's crucial to use HTTPS. Failure to do so may result in the browser blocking access to the webcam.
  • User Permission: Before the webcam can be activated, the browser will prompt the user for permission to access the webcam device. This ensures user privacy and consent before any image capture occurs. The widget cannot capture images until the user has given their permission.

Conclusion

In this guide, we have guided you through the steps of integrating the webcam feature into Node-RED applications. Additionally, we have discussed the inner workings, privacy considerations, and browser compatibility of the webcam widget that we will use to integrate the webcam feature in Node-RED applications.

Written By:

Node-RED Implementation Executive

Published on:

Related Articles:

Sign up for updates