Harshit Sachan has Published 37 Articles

Create the Indian Flag using HTML and CSS

Harshit Sachan

Harshit Sachan

Updated on 14-Aug-2024 13:45:20

13K+ Views

To create the Indian flag using HTML and CSS, we will need to have good understanding of CSS. Indian flag have three colors: saffron, white and green and Ashoka Chakra at the middle. In this article, we will be creating stepwise Indian flag. First making a pole then tricolor and ... Read More

Python program to get first and last elements from a tuple

Harshit Sachan

Harshit Sachan

Updated on 27-Aug-2023 14:29:32

32K+ Views

Tuples are an important data type in Python and are often used to store a fixed set of elements. In this article, we will be discussing how to extract the first and last elements from a tuple in Python. We will go over the syntax for accessing these elements and ... Read More

How to Package and Deploy CLI Applications With Python

Harshit Sachan

Harshit Sachan

Updated on 20-Apr-2023 13:06:15

4K+ Views

Based on the interface we have two types of applications CLI (Command Line Interface) applications and GUI (Graphical User Interface) applications. A command line application or, console application is the one which can be accessed from a shell or, command line through a text interface, these accepts inputs from ... Read More

Color Identification in Images using Python and OpenCV

Harshit Sachan

Harshit Sachan

Updated on 20-Apr-2023 13:05:19

15K+ Views

Identifying colors in images is a task commonly performed in computer vision and image processing. It has a wide range of applications such as object detection, image segmentation, and image retrieval. In this article, we will see how to determine colors in an image using Python and OpenCV. Open CV ... Read More

Color Spaces in OpenCV and Python

Harshit Sachan

Harshit Sachan

Updated on 20-Apr-2023 13:03:19

3K+ Views

Color spaces are different types of color modes, used in image processing and signals and system for various purposes. Open CV is a popular computer vision library written in C/C++ with bindings for Python, OpenCV provides easy ways of manipulating color spaces. Open CV is open source and gives ... Read More

Combobox Widget in Python Tkinter

Harshit Sachan

Harshit Sachan

Updated on 20-Apr-2023 13:01:56

19K+ Views

Tkinter is a Python binding to the Tk GUI toolkit. It is the standard Python interface to the Tk GUI toolkit, and is Python's standard GUI. Tkinter is included with standard Linux, Microsoft Windows and macOS installations of Python. We can create many widgets from python’s tkinter module. One of ... Read More

Command Line File Downloader in Python

Harshit Sachan

Harshit Sachan

Updated on 20-Apr-2023 12:59:35

717 Views

Python is a powerful programming language that provides many tools and libraries for different applications. We can also create a command line file downloader in python. Command line downloader is used to download files from internet manually through command line interface or your terminal without using browser. To create ... Read More

Connect new point to the previous point on a image with a straight line in OpenCV-Python

Harshit Sachan

Harshit Sachan

Updated on 20-Apr-2023 12:58:02

1K+ Views

We might have to draw lines on an image for various purposes like drawing, scribbling, tracking the movements of a point etc. so it is necessary to know how to connect 2 points in image processing. OpenCV is a library of programming functions primarily for real-time computer vision. The ... Read More

Convert BGR and RGB with Python and OpenCV

Harshit Sachan

Harshit Sachan

Updated on 20-Apr-2023 12:56:07

12K+ Views

OpenCV is a library of programming functions primarily for real-time computer vision. The library is cross-platform and licensed as free and open source software under the Apache License. It is written in C++ and has Python bindings that make it easy to use in Python applications. In this article we ... Read More

How to Package a Command Line Python Script

Harshit Sachan

Harshit Sachan

Updated on 20-Apr-2023 12:53:02

3K+ Views

Python is a powerful programming language that has various applications in the world of software engineering and is very widely used. We can create various types of applications using Python. We can also make a CLI script in Python which can be used to automate many tasks. We can also ... Read More

Advertisements