Naveen
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 β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 β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 β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 β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 β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 β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 β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 β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 β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 β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 β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 β