Ginni has Published 1580 Articles

What is the session layer?

Ginni

Ginni

Updated on 04-May-2021 08:01:35

706 Views

The session layer supports establishing, controlling, and eliminating a session or dialogue between the two end frameworks. It generates the session, handles the packets sent back and forth during the session and removes the session. The dialogue type/session type is also defined through half-duplex or full-duplex.The session layer also supports ... Read More

What is the transport layer?

Ginni

Ginni

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

2K+ Views

The transport layer is essential for the source to deliver a complete message. The network layer is answerable for the end-to-end delivery of single packets.The transport layer obtains the messages of self-assertive length from the session layer, and divides them into packets. It also endures them to the network layer ... Read More

What is a network layer?

Ginni

Ginni

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

1K+ Views

The network layer creates a logical association between the sender and the user by giving a logical way. This layer switches and routes the message packet as important to obtain them to their destination.It is responsible for sending and distributing the message packets. The network layer creates routing decisions and ... Read More

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

633 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

425 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

931 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

Advertisements