Ginni has Published 1597 Articles

What is the data link layer?

Ginni

Ginni

Updated on 04-May-2021 07:54:01

1K+ Views

The primary service of the data link layer is to support error-free transmission. The physical layer sends the information from the sender's hub to the receiver's hub as raw bits.The data link layer must identify and correct any bug in the communicated data.It takes packets from the network layer and ... Read More

Explain the services of the physical layer

Ginni

Ginni

Updated on 04-May-2021 07:53:34

2K+ Views

Physical layer is the shortest layer in the model. This layer is feasible for initiating, preserving, and deactivating a physical circuit between two end frameworks.The Physical Layer is vital for transmitting bits from one device to another device. It can change the series of bits into electric signals, light signals, ... Read More

What is the OSI Reference Model?

Ginni

Ginni

Updated on 04-May-2021 07:52:56

4K+ Views

OSI represents Open System Interconnection. The OSI reference model is a seven-layered architecture and is created in a hugely structured method. Each layer in the model has specific sets of procedures, functions, and protocols. One layer can communicate with an adjacent layer by using its interface.OSI model was advanced by ... Read More

How Region of Interest (ROI) works in OpenCV using C++?

Ginni

Ginni

Updated on 03-May-2021 10:29:30

2K+ Views

To separate a particular portion from the image, we have to locate the area first. Then we have to copy that area from the main image to another matrix. This is how the ROI in OpenCV works.In this example, two matrices have been declared at the beginning. After that, an ... Read More

How to read the pixel value from the multichannel image in OpenCV using C++?

Ginni

Ginni

Updated on 03-May-2021 10:27:28

597 Views

We have declared three variables named-'blue_Channel', 'green_channel' and 'red_channel'. The goals of these variables is to save the pixel values. We have used these variables inside the 'for loops'. Then we declared a matrix named 'color_Image_Matrix'.The syntax of this method is:blue_Channel = color_image_Matrix.at(i, j)[0];We used a BGR image. It has ... Read More

How to detect and track the motion of eyeball in OpenCV using C++?

Ginni

Ginni

Updated on 10-Mar-2021 09:16:37

407 Views

Here, we will learn how to detect and track the motion of eyeball in OpenCV.The following program demonstrates to detect the eyeball and track the location.Example#include #include #include #include #include #include using namespace cv; using namespace std; Vec3f eyeBallDetection(Mat& eye, vector& circles) {    vectorsums(circles.size(), 0);    for (int y ... Read More

How to track the eye in OpenCV using C++?

Ginni

Ginni

Updated on 10-Mar-2021 09:13:36

865 Views

Here, we will learn how to track the eye in OpenCV. After detective the eyes, the tracking is an effortless and straightforward task. We used the circle to enclose the detected eyes. Tracking the center of the circle means tracking the center of eyes. To track the center of the ... Read More

How to detect the eye in OpenCV using C++?

Ginni

Ginni

Updated on 10-Mar-2021 09:12:36

870 Views

Here, we will learn how to detect the eye in OpenCV. We will use haarcascade_eye.xml classifier located in 'C:/opencv/sources/data/haarcascades' to detect the eyes. To detect the eyes, we need to add these headers.The first header is , and it is the header of C++ programming language. Reading writing images and ... Read More

How to track the face in real-time in OpenCV using C++?

Ginni

Ginni

Updated on 10-Mar-2021 09:08:19

255 Views

We will learn how to track the face in real-time in OpenCV. This program is same to the previous program and difference is that we used ellipse instead of rectangle to identify the face and we also used additional 'cout' statement to show the co-ordinate of the face in the ... Read More

How to detect human faces in real-time in OpenCV using C++?

Ginni

Ginni

Updated on 10-Mar-2021 09:06:25

2K+ Views

Detecting face in real-time is similar to detecting a face in still pictures.  The only difference is in real-time face detection, and we have to take a video stream of computer. In this program, we used 'VideoCapture()' function. This function captures video from other camera and stores the frames temporarily ... Read More

Advertisements