Manish Kumar Saini has Published 958 Articles

How To Create Animated GIF Images in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 10-Oct-2023 16:59:26

613 Views

GIF stands for Graphics Interchange Format. It is a type of image file which is a raster graphics file format, specially used in web and networking applications. The important characteristic of the GIF image format is that it can support both static and animated objects within the image. In this ... Read More

Histogram Equalization in Digital Image Processing

Manish Kumar Saini

Manish Kumar Saini

Updated on 10-Oct-2023 16:47:04

1K+ Views

In digital image processing, histogram equalization is a process of enhancing the contrast and improve the visual quality of an image. We can perform histogram equalization using digital tools like MATLAB. This tutorial is meant for explaining the histogram equalization in digital image processing by using MATLAB. But before that ... Read More

Edge detection using Prewitt, Scharr and Sobel Operator

Manish Kumar Saini

Manish Kumar Saini

Updated on 10-Oct-2023 16:39:32

2K+ Views

In digital image processing, the technique which is used to highlight the borders/boundaries of object withing a digital image is referred to as edge detection. We can use MATLAB to perform this operation. For this, there are several different built-in functions and operators are defined in the MATLAB library. ... Read More

Edge detection using first derivative operator in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 10-Oct-2023 15:47:43

283 Views

In digital image processing, edge detection is a process used to identify the boundaries of objects within a digital image. We have various image processing techniques to detect edges in an image, but in this tutorial, we will learn the edge detection using first derivative operator in MATLAB. What is ... Read More

Creating Function in Files in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 10-Oct-2023 15:38:10

221 Views

MATLAB is a high−level programming language used to perform engineering and scientific operations such as system design and analysis, matrix manipulation, data interpretation, image processing, app development, and more. MATLAB provides several methods to write reusable codes that can be used to perform repeated tasks. One such code in ... Read More

Class Constructor Methods in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 10-Oct-2023 15:36:41

389 Views

In MATLAB, there are class constructor methods which are used to create an instance of a class. Class constructor methods are basically special functions within a class that are used to create and initialize the objects of the class, these class constructor methods are called automatically when we create a ... Read More

Linear Filtering without using Imfilter Function in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 09-Oct-2023 11:15:19

407 Views

In MATLAB, "linear filtering" is a technique used to apply a linear filter to a digital image. The fundamental principle behind the working of linear filtering is convolution. This article is meant for explaining the concept of linear filtering and how to perform linear filtering without using the "imfilter" function ... Read More

How to reverse a string in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 09-Oct-2023 11:14:27

435 Views

MATLAB provides various built-in functions to reverse a string of text. In this tutorial, I am going to explain all the commonly used methods to reverse a string in MATLAB. Reverse a String Using "reverse" Function in MATLAB There is a built-in function "reverse" in MATLAB that we can use ... Read More

How to reverse a number in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 09-Oct-2023 11:11:42

835 Views

In MATLAB, there are various methods and functions for reversing a given number. In this tutorial, I will explain all these methods one-by-one with the help of examples. Reverse a Number Using "fliplr" Function in MATLAB The "fliplr" is a built-in function in MATLAB that we can use to reverse ... Read More

How to remove spaces in a string in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 09-Oct-2023 11:09:54

657 Views

MATLAB provides various methods and functions to remove spaces in a string. In this tutorial, we will cover the commonly used methods for removing extra spaces in a string. So, let’s start. Remove White Space in a String Using "isspace" Function In MATLAB, the "isspace" function is a built-in function ... Read More

Advertisements