Number Plate Extraction using MATLAB

The number plate extraction in MATLAB can be accomplished using Image Processing Tools available in MATLAB. The functions p ... ber plate extraction:-  ANPR(Automatic Number Plate Recognition) Using ALR(Automatic Line Tracking Robot). Loading…

Python Data Type Conversion

Python provides an easy way to convert in between different data types. During the program, we may need to perform some conv ... ex(x) Converts an integer to a hexadecimal string. 17. oct(x) Converts an integer to an octal string.   Loading…

Bezier Curves and Bezier Surfaces generation with C/C++ in Code::Blocks

Brief Theory of Bezier Curve In order to draw curvy surface we implement Bezier curve algorithm. In drawing Bezier we f ... ting.    Output Loading...

Python Input and Output

In this tutorial, we will go through learning how to take input from users and print them using different formatting availab ... oat operation, make sure you use appropriate type conversion. Learn more about Python Data Type Conversion. Loading…

Controlling Camera and Line of Sight in OpenGL

Camera controlling is essential in 3D viewing. OpenGL provides a function gluLookAt() for this purpose. The syntax of the ... view vector axis until the top of the camera matches the specified up direction as closely as possible. Loading…

Python Operators

Operators in Python are the symbols that perform specific function between operands. An operator is one of the most importan ... ociativity in Python. Assignment operators and comparison operators do not have associativity in Python. Loading...

Python Program to Read Two Numbers and Print Quotient and Remainder

In this example, we will write a simple program that takes input from the user and calculates the quotient and remainder o ... calculating quotient and % for calculating remainder. The result is displayed using print () function. Loading…

Lightning in OpenGL with Material Effect

This is second tutorial on Lightning in OpenGL. In this tutorial, I will discuss about producing Material Effect in OpenGL. ... glutMainLoop(); return 0; } Output Loading… (adsbygoogle = window.adsbygoogle || []).push({});

Python Program to Calculate Simple Interest

In this example, we will write a simple program that calculates the simple interest in Python. To better understand this ex ... mathematical formula for simple interest is applied and the result is displayed using print () function. Loading…

Python Variables, Constants and Literals

This tutorial will focus on the python variables, constants, and literals and their use cases with examples. (adsbyg ... own as None.  It specifies the field that is not created. and also can indicate the end of lists in Python. Loading…

Gradient descent versus normal equation

Gradient descent and normal equation (also called batch processing) both are methods for finding out the local minimum of ... python. Python developer can look into it (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Drawing a Circle with Mid – Point Circle Algorithm in C/C++

As in the previous line drawing algorithm, we sample at unit intervals and determine the closest pixel position to the sp ... yCenter, x, y); while(x Output (adsbygoogle = window.adsbygoogle || []).push({}); Loading...

Insurance Claim Prediction using Logistic Regression

The increased cost of health insurance is alarming throughout the world. These costs are done for consumers and employers s ... eck.score(testData, testLabel) print("accuracy = ", accuracy * 100, "%") Download the dataset here:- here Loading…

Numerical Methods Tutorials

This section consists of various numerical methods problems and their solution in C language. You can click each link to v ... ut pivoting, divide by zero error may result in some cases. Partial and full pivoting are recommended. Loading…

Discrete Cosine Transform and JPEG compression: Image Processing

JPEG is well-known standard for image compression and Discrete Cosine Transform (DCT) is the mathematical tool used by JPEG ... s {000001000100110001010} Which is of 21 bits whereas the original block of pixel is 64*8 = 512 bits. Loading…

Python Keywords and Identifiers

Contents Keywords are reserved word in Python programming language that cannot be used for naming variables, constants or ... 0008/ for PEP 8 — Style Guide for Python Code. (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Numerical Methods: Multiplication of two matrices using two dimensional array in C

Let we have two 2 x 2 matrices A and B (adsbygoogle = window.adsbygoogle || []).push({}); Loading… Let we h ... gle = window.adsbygoogle || []).push({}); Loading...

Visual Prolog Program to add the contents of an integer list.

Here in this program, the sum function is made that adds the contents of list. The first segment ( i.e the Domains section ... T], X):- sum(T,Y), X=H+Y. GOAL sum([1,8],Z). (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Visual Prolog Program to delete a given element from the list.

To delete a element from a list the position and the element list is passed to the predicate delete. Then the delete predic ... , del(P1,T,Z). (adsbygoogle = window.adsbygoogle || []).push({}); GOAL del(2, [0,1,2,3,4,5],X). Loading…

List Manipulation in Prolog

List is one of the most important data structure in Prolog. Lists are contained in square brackets with the element being s ... see some operations on List in Next Tutorial. (adsbygoogle = window.adsbygoogle || []).push({}); Loading…