@@ -66,7 +66,7 @@ _In this example, we will capture live frames from Multiple Systems(a.k.a Server
Open a terminal on the System(_a Client, where you want to display the input frames received from Multiple Servers_) and execute the following python code. **Remember the IP-address of this system(_required at Server's end_) by executing the command: _'`hostname -I`'_** and also replace it in the following code:
**Note::bulb:***For building montages with simplicity, We are going to use `imutils` python library function to build montages by concatenating various output video frames received from different servers together. Therefore, Kindly install this library with `pip install imutils`.*
**Note::bulb:***For building montages with simplicity, We are going to use `imutils` python library function to build montages by concatenating various output video frames received from different servers together. Therefore, Kindly install this library with `pip3 install imutils`.*
```python
# import libraries
...
...
@@ -226,7 +226,7 @@ server.close()
**Tip:bulb:: Remember you can send any type of additional data of any datatype along with the frame, for example, `dict, list, tuple,string, int etc` !**
#### In this example we will perform following tasks:
#### In this example we will perform the following tasks:
* _**We will capture live frames and additional data(text message in this example) using [`message` parameter in `send()` function](https://github.com/abhiTronix/vidgear/blob/8f7153cbd822da9a669cd292dc46ae4cdb8e457d/vidgear/gears/netgear.py#L423) of NetGear API**, from different Servers(consisting of a Raspberry Pi with RaspiCamera Module and a PC with webcam) and then pipe them over the network to another remote system(a.k.a Client) at the realtime._
* _**We are going to implement a [`filter`](#parameters)** at Client's end to filter out input data from only one of the give Servers_
...
...
@@ -234,7 +234,7 @@ server.close()
Open a terminal on the remote System(_a Client, where you want to display the input frames and additional data received from Multiple Servers_) and execute the following python code. **Remember the IP-address of this system(_required at Server's end_) by executing the command _'`hostname -I`'_** and also replace it in the following code:
**Note::bulb:***For building montages with simplicity, We are going to use `imutils` python library function to build montages by concatenating various output video frames received from different servers together. Therefore, Kindly install this library with `pip install imutils`.*
**Note::bulb:***For building montages with simplicity, We are going to use `imutils` python library function to build montages by concatenating various output video frames received from different servers together. Therefore, Kindly install this library with `pip3 install imutils`.*