- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Harshit Sachan has Published 37 Articles
Harshit Sachan
21K+ 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
Harshit Sachan
2K+ 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
Harshit Sachan
5K+ 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
Harshit Sachan
1K+ 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
Harshit Sachan
3K+ 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
Harshit Sachan
205 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
Harshit Sachan
339 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
Harshit Sachan
4K+ 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
Harshit Sachan
1K+ 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
Harshit Sachan
139 Views
Python is a very popular and powerful programming language which is used to create a large number of applications with different purpose. A command line interface script or CLI script is a script that performs a specific task which is scripted, when it is executed through command line and it ... Read More