Short circuit protection using Transistor

Short Circuit Protection using Transistor A short circuit is an electrical circuit that allows ideally infinite and practically very high amounts of current to travel along an unintended path with almost zero resistance and zero voltage. Short circuit protection using a transistor is a circuit that solves the short circuit problem. Ideally, an infinite amount of …

Short circuit protection using Transistor Read More »

Architecture of 8086

Architecture of 8086 This tutorial expalins the deep working os architecture of 8086 microprocessor diagram and step wise working architecture of 8086 microprocessor with block diagram. Architecture of 8086 microprocessor is divided into two units BIU and EU because of pipelining ( refer pipelining tutorial ). Bus Interface Unit – BIU This stands for bus …

Architecture of 8086 Read More »

OpenCV Image Basics

OpenCV Image Basics Introduction From the previous tutorial, we can get to know, how the images are stored in the NumPy. Now, in this tutorial we shall get to know about the OpenCV image basics, how OpenCV stores the images and some operations on the image using the openCV image processing techniques. About OpenCV OpenCV …

OpenCV Image Basics Read More »

Open CV with ROS

Open CV with ROS Introduction In the robotic world, the sight of the robot is also possible with the help of the OpenCV. This package of OpenCV integrating with the ROS to provide the vision to the robots in the ROS simulation. To install the OpenCV on to your system run the following command To …

Open CV with ROS Read More »

Stack

Stack Introduction The stack is a data structure that works on the Last In First Out (LIFO) principle. They will have the top variable that always keeps track of the top element. Operations Push/Insert: To insert an element Pop/Delete: To delete an element The operations like push and pop that are performed on the stack …

Stack Read More »

logical instructions of 8051

Logical instructions of 8051 As there were 24 arithmetic instruction sets,and there are 25 logical instructions in 8051. AND , OR, XOR , NOT …. These instructions come under logical instructions. ANL A, #14H : This is AND instruction performed between the data of register A, and the 14H.  A ← A *14H ,  the …

logical instructions of 8051 Read More »

memory segmentation in 8086

Memory segmentation in 8086 How does files, folders store data in present computers. Data in one file doesn’t overlap with another file, even though they both are in one memory , is all because of memory segmentation in 8086. Memory of 8086 has 4 segments Data segment Program/code segment Stack segment ( read more about …

memory segmentation in 8086 Read More »

Insert and Select Command

Insert and Select Command In the previous tutorial, we have come across creating tables and deleting them. Now, in this tutorial, let us look into the insertion of data into the tables, in the form of rows and about the most used SELECT command in the SQL queries. Insert and select commands INSERT Command  Insert …

Insert and Select Command Read More »

Memory banking in 8086

Memory banking in 8086 In any processor , there is memory. This memory is stored in locations. Each location can hold one byte( 8-bits ) of data. Memory banking in 8086 is , having divided the memory into two banks ( two parts ). Why can one location store only one byte?Minimum byte operation needs 1 …

Memory banking in 8086 Read More »

Numpy and Image Basics

Numpy and Image Basics Introduction In this tutorial, we shall look on to the concepts about the Numpy and image basics of storing the images in the Numpy as an N-dimensional array format. In the previous tutorial, we have learnt about the basics of the images and their properties. You can learn about the Numpy …

Numpy and Image Basics Read More »