This article demonstrates Method-Overloading Using Java. Earlier, I have explained how to create user-defined methods. Accordingly, a class can have user-defined methods which are all uniquely named. In other words, in a particular class, each method has a unique name. However, this rule has an exception. In other words, a class may allow two or more methods …
Flow Control Using Loops in Java
In this article, I will explain Flow Control Using Loops in Java. In general, the statements of a program code execute sequentially. However, there are occasions when this sequential course of action needs to be altered. For instance, suppose we want to repeat certain statements till a particular condition remains satisfied. In that case, we …
How to Create User-Defined Methods in Java
Basically, User-Defined Methods in Java help us creating a program in manageable segments. Basically, a method is a piece of code that performs awell-defined task and also has a name. Therefore, a method allow us to perform the same task in a program repeatedly without writing the code again. Further, the use of methods in …
Examples of Decision Making in Java
This article explains the concept of Examples of Decision Making in Java. Basically, decision-making in a code is required whenever there is two or more course of action depending on a condition. So, in Java, we can perform decision-making using the if…else statement. Also, we can also use the ternary operator in Java if we need to choose one …
Understanding HTTP Requests and Responses
This article explains HTTP Requests and Responses. In order to get data from another server HTTP Requests are made. Basically, these requests occur between API endpoints. API End Points Generally, two servers interact with each other using web services. So, one of the servers is making a request for a resource. While the other one …
What is Asynchronous JavaScript?
In general Asynchronous JavaScript lets the code execute immediately without blocking. For the purpose of understanding this concept let us assume that we have two statements in sequential order in a code. While the first statement being executed, the second one will wait for it to finish. It is known as synchronous execution. On the other hand, if the …
Deep Learning Methods for Object Detection
In this article, I will explain some of the state-of-art Deep Learning Methods for Object Detection. In order to perform image analysis, it is necessary to find out all the objects that the given image contains. Region-Based Convolution Neural Network In general, Region-Based Convolution Neural Network (R-CNN) works as follows. At first, it divides the whole image into regions. In fact, it creates …
Example of Chart Control in ASP.NET
This article shows an example of Chart Control in ASP.NET. Basically, the Chart Web Control makes use of the Chart class. In fact, you can create almost any type of chart using this control. The Chart Class As I have said earlier, the Chart class is available in System.Web.DataVisualization namespace provides the functionality for the Chart control. Evidently, it has …
Understanding YOLO Algorithm
In brief, YOLO Algorithm is an object detection algorithm. While YOLO stands for You Only Look Once. We use this algorithm to determine the class of an object. In other words, given an image, the algorithm determines the classes of objects in the image. Also, it determines the location of objects in the given image. Hence, YOLO Algorithm is an important technique that we can use in many Computer Vision applications. …
What is Image Segmentation?
Basically, Image Segmentation is an image processing technique. Significantly, it is an important part of object detection. In the case of object detection, it is required to partition an image. So, all the objects that the given image contains can be separated. Once we separate all parts of the image it becomes easier to analyze it. Applications of Image Segmentation The following list provides some of the applications where we can use image segmentation. In the case of …