Gireesha Devara has Published 249 Articles

Top Hat and Black Hat Transform using OpenCV Python

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 15:34:25

804 Views

Top Hat and Black Hat Transforms are the Morphological transformations operations on the binary images. Generally, the morphological operations process the image based on the morphology, structure, or shape. Top-hat transform is an operation that opens an image and then subtracts it from the original image (top hat = image ... Read More

OpenCV Python program to read and save an Image

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 15:31:19

802 Views

OpenCV-python is an Open Source Computer Vision Library in python it is used to process images and videos for detecting faces and objects. It is one of the image processing libraries in python and uses the python Numpy library so that all the image arrays are represented as a ndarray ... Read More

Contour Plot using Python Matplotlib

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 15:25:12

639 Views

Matplotlib is free and open-source plotting library in python. It is used to create 2-Dimensional graphs and plots by using python scripts. To utilize the matplotlib functionalities we need to install the library first. Install using pip By execute the below command in the command prompt we can easily install ... Read More

Contour Plots using Plotly in Python

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 15:17:55

258 Views

In python Plotly referred as "plotly.py". It is a free and open-source plotting library that is built on top of “plotly.js”. It supports more than 40 unique chart types. This library is mainly used for financial, geographical, scientific, 3-dimensional, and data analysis applications. It can be used to plot ... Read More

Conversion between binary, hexadecimal and decimal numbers using Coden module

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 14:57:06

77 Views

The coden is a python library developed by Tanmay Earappa, which is used for secret codes (decoding and encoding secret codes). This module provides functionalities to do the code conversions. Following are few functions and their functionalities provided by this module – coden.secret(): It is used for decode or ... Read More

Convert an image into jpg format using Pillow in Python

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 14:53:05

4K+ Views

In python pillow is one of the image processing libraries that is built on top of PIL (Python Image Library). It provides image processing functionalities to the python interpreter to work with image objects. And this library supports above 30 different image file formats. Install Pillow with pip By ... Read More

Conversion Functions in Pandas DataFrame

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 14:48:53

180 Views

Pandas is one of the most potent libraries in python that provide high-performance data manipulation and analysis tools, it allows us to work with tabular data like spreadsheets, CSV, and SQL data using DataFrame. A DataFrame is a 2-dimensional labeled data structure it represents the data in rows and ... Read More

Convert a nested for loop to a map equivalent in Python

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 14:28:52

390 Views

In general, for loop is used to execute/iterate a block of code a fixed number of times. And nested for loop is nothing but, iterating a block of code for x number of times, then we need to run another block of code within that code for y number of ... Read More

Convert "unknown format" strings to datetime objects in Python

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 13:25:44

935 Views

Dates can be in many formats like: “2009/05/13 19:19:30”, “May 13 2009 07:19PM", and “2009-05-13 19:19”. Python provides many modules to work with data related to date times. To read an unknown format of date strings into a python datetime object, we can use the python dateutil, datetime modules. The ... Read More

Convert a NumPy array to a Pandas series

Gireesha Devara

Gireesha Devara

Updated on 30-May-2023 13:16:19

1K+ Views

A Numpy array is an N-dimensional array also called a ndarray, it is a main object of the NumPy library. In the same way, the pandas series is a one-dimensional data structure of the pandas library. Both pandas and NumPy are validly used open-source libraries in python. Below we can ... Read More

Previous 1 ... 5 6 7 8 9 ... 25 Next
Advertisements