Naveen

Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Linear Regression for Machine Learning

Linear regression is the statistical technique to find relationship between two or more variables. To predict the values of response...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Different uses of underscore in Python

1 – Using in interpreter When you execute the expression in the python interpreter it will store the result of...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Use of assert statement in Python

Syntax: Assert condition [Error Message] Example 1: assert statement without error message Example 2: assert statement with error message Example...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Difference between iterables and iterators in Python

Iterables Iterators Iterators can be iterable because both iterator and iterable can be iterated using for loop but iterable objects...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Decorators and Generators in Python

Python implementation Generators Python generators are functions that are similar to normal functions, but use yield statements instead of return...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Abstraction in Python

Abstract Class Why Abstraction is Important? In Python, a person usually abstracts data/classes to hide the irrelevant information. This helps...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 21 Apr, 2025

OOPs in Python

Object-oriented programming (OOP) is a programming paradigm based on the concept of objects which contains data or attributes and code...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 5

What is Edge detection? Edge detection is a computer vision technique that uses the edges of an image to find...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 4

In this article, I will be discussing about various algorithms of image feature detection, description using OpenCV. Introduction What do...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 3

You may be already familiar with the word β€˜contour.’ I’ve used this term several times in previous posts. A contour line...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 2

Today we’re going to talk about how to manipulate images. These are preprocessing steps. When it comes to detecting edges...

Read More β†’
Placeholder
Naveen πŸ“… Last Updated: 12 Dec, 2024

Computer Vision for Beginners – Part 1

Image Processing is used to perform some operations on images in order to animate them, develop videos, or generate graphics....

Read More β†’