Posts

Showing posts with the label Engeneering

Digital Image Processing

Image
  Image processing is the process of manipulating digital images. See a list of image processing techniques, including image enhancement, restoration, & others. Digital image processing is the use of a digital computer to process digital images through an algorithm. As a subcategory or field of digital signal processing, digital image processing has many advantages over analog image processing. It allows a much wider range of algorithms to be applied to the input data and can avoid problems such as the build-up of noise and distortion during processing. Since images are defined over two dimensions or more, digital image processing may be modeled in the form of multidimensional systems.  The generation and development of digital image processing are mainly affected by three factors: first, the development of computers; second, the development of mathematics (especially the creation and improvement of discrete mathematics theory); and third, the demand for a wide range ...

Revolutionizing Electronics: Groundbreaking Graphene Semiconductor Marks a New Era in Computing

Image
Graphene is a single layer of carbon atoms arranged in a hexagonal lattice, and it is considered a two-dimensional material. It is a basic structural element of other carbon allotropes like graphite, carbon nanotubes, and fullerenes. Graphene is a promising material for electronics due to its unique properties, such as high conductivity and mechanical strength. However, integrating graphene into semiconductor devices poses significant challenges, and progress in this area has been a subject of ongoing research. But recently Scientists have successfully created a working and scalable semiconductor using graphene for the first time. The achievement opens the door to a potential revolution in computing, introducing a new type of computer with enhanced speed and efficiency compared to the current silicon chip technology.  The semiconductor chips are increasingly emerging as pivots of the global economy, and are described as the 'new oil' of the technology age. The computing power ...

Game Dev Mastery: Understanding Game Development with Unity and C#

Image
 Did you know that the video game industry rakes in more revenue than movies and music combined! Behind the scenes, game development with Unity and C# is the art of turning imagination into interactive reality. Let's dive into the world of game creation and discover why Unity and C# make the perfect power couple for building digital dreams. What is Game Development? Simply speaking, Game Development is the overall process of creating a video game. And if you thought that making a video game is as easy as playing one, well it’s not! There are many components while creating a game such as Story, Characters, Audio, Art, Lighting, etc. that eventually merge together to create a whole new world in a video game! This process of Game Development for commercial games is funded by a publisher (a company) but independent video games are comparatively cheaper and smaller so they can be funded by individuals also. Now there is a common doubt relating to Game Development that only good Game Pla...

Websites for Developers

Image
  Are you an Engineering aspirant? Want to get a job in IT industry? Want to become a software developer? Then checkout some of the amazing websites for developers 💯 1. Stack Overflow This is a public platform that technologists use to ask and answer questions about coding. Stack Overflow has more than 100 million users. Most people head to Stack Overflow to troubleshoot technical questions. For example, people ask quick questions like how do I compare strings in Java? 2. DevDocs DevDocs is a single-page open source app that allows you to search documentation of all popular programming languages and frameworks. It combines multiple developer documentations in a clean and organized web UI with instant search, offline support, mobile version, dark theme, keyboard shortcuts, and more. DevDocs was created by Thibaut Courouble and is operated by freeCodeCamp. 3. Ray.so This website allows you to take beautiful screenshots of codes. It also has a dark mode and some preloaded themes for ...

Introduction To Boolean Logic Circuits : Part 2

Image
Hello guys sorry for the late post since i was busy with something else, from now  on i will be posting regularly so stay tuned  In the previous session we learned about boolean algebra its significance, truth tables, and some logic operators also known Logic gates In this session we will know about the other operators we use in boolean circuits . Part 1 Introduction to Boolean Logic : 01 MORE LOGIC OPERATORS Till now we have studied about AND, OR & NOT operator these were the basic operators . There are two more types of operators : Universal operators i.e. NOR & NAND Special operators i.e. XOR & XNOR NOR OPERATOR   This Operator is a culmination of two operators OR operator followed by NOT operator. It simply reverses the value of OR operator. All outputs of NOR operator is 0 if any of the inputs is 1. It can be represented as ( A + B) dash = Y read as A NOR B The truth table of NOR operator is as follows: NAND OPERATOR This operator follows an order of AND ...

Introduction To Boolean Logic Circuits : Part 1

Image
What is Boolean logic ? And why do we need it ? To understand making logic circuits , first we need to know what is Boolean Algebra ? BOOLEAN ALGEBRA Boolean algebra also know as ' Switching Algebra ' is a symbolic analysis of relay switching circuits. It is represented in Binary Quantities , that in either  YES or NO , 1 or 0 , TRUE or FALSE , ON or OFF . statements  which can be determined to be true or false are called logical statements or truth functions and the results TRUE or FALSE are called truth values . The truth values are depicted by logical constants TRUE and FALSE or 1 and 0. 1 means TRUE and 0 means FALSE. And the variables which can store these truth values are called logical variables or binary valued variables as these can store one of the two values TRUE or False. Till now you may have understood what is Boolean algebra now we come to how to make truth tables. TRUTH TABLE A Truth Table is a table which represents all the possible values of log...