Abstract
The aim of the project is to develop OCR software for Tamil character recognition. OCR is an optical character recognition and is the mechanical or electronic translation of images of typewritten or handwritten (usually captured by a scanner) into machine-editable text. OCR is a field of research in pattern recognition, artificial intelligence and machine vision. Character recognition is used most often to describe the ability of computer...
Thursday, March 17, 2016
IMPLEMENTATION OF TAMIL-OCR USING NEURAL NETWORK IEEE PAPER DONLOAD
IMPLEMENTATION OF TAMIL-OCR USING NEURAL NETWORK
Abstract
The aim of the project is to develop OCR software for Tamil character recognition. OCR is an optical character recognition and is the mechanical or electronic translation of images of typewritten or handwritten (usually captured by a scanner) into machine-editable text. OCR is a field of research in pattern recognition, artificial intelligence and machine vision. Character recognition is used most often to describe the ability of computer to translate printer or human writing into...
Integration of Sound Signature in Graphical Password Authentication System iEEE PAPER DOWNLOAD

Integration of Sound Signature in Graphical Password Authentication System
ABSTRACT
Here a graphical password system with a supportive sound signature to increase the remembrance of the password is discussed. In proposed work a click-based graphical password scheme called Cued Click Points (CCP) is presented. In this system a password consists of sequence of some images in which user can select one click-point per image. In addition user is...
HAPTIC TECHNOLOGY
HAPTIC TECHNOLOGY
Abstract :
Engineering as it finds its wide range of application in every field not an exceptioneven the medical field. One of the technologies which aid the surgeons to perform even the most complicated surgeries successfully is Virtual Reality. Even though virtual reality is employed to carry out operations the surgeon's attention is one of the most important parameter. If he commits any mistakes it may lead to a dangerous end. So, one may think of a technology that reduces the burdens of a surgeon by providing an efficient...
PALM VEIN TECHNOLOGY Abstract
PALM VEIN TECHNOLOGY
ABSTRACT:
With the increase in technology threat to personal data and national security hadalso increased. The methods that were developed to secure important information from outsideintervention were not up to safe mark .There was a need to introduce a technology that securesour data more efficiently from unlawful intervention .Fujitsu has developed a palm vein pattern authentication technology that usesvascular patterns...
Tuesday, March 15, 2016
SQL GROUP BY Clause
The SQL GROUP BY statement is used together with the SQL aggregate functions to group the retrieved data by one or more columns. The GROUP BY concept is one of the most complicated concepts for people new to the SQL language and the easiest way to understand it, is by example.
Remember we used the SUM keyword to calculate the total sales for all stores? What if we want to calculate the total sales for each store? Well, we need to do two things:...
SQL Aggregate Functions

SQL Aggregate Functions
SQL Aggregate functions return a single value, using values in a table column. Useful aggregate functions:
AVG( ) - Returns the average value
COUNT( ) - Returns the number of rows
FIRST( ) - Returns the first value
LAST( ) - Returns the last value
MAX( ) - Returns the largest value
MIN( ) - Returns the smallest value
SUM( ) - Returns the sum
In this chapter we are going to introduce a new table called...
SQL Operators

SQL Operators
An operator is a reserved word or a character used primarily in an SQL statement's WHERE clause to perform operation(s).There are two type of Operators, namely
Comparison Operators
Logical Operators.
There are Operators That are used to specify conditions in an SQL statement and to serve as conjunctions for multiple conditions in a statement.
Arithmetic operators
Comparison operators
Logical operators
Operators used...
ALL SQL COMANDS COLLECTION
Here is the collection of all sql commands. You can use this for recap and Quick study of SQL Commands.
This post consist of all SQL Commands with syntax and Functions for quick understanding.
This tutorial gives you a quick start with SQL by listing all the basic SQL Syntax:
All the SQL statements start with any of the keywords like SELECT, INSERT, UPDATE, DELETE, ALTER, DROP, CREATE, USE, SHOW and all the statements end with a semicolon (;).
Important point to be noted is that SQL is case insensitive which means SELECT and select...
SQL Constraint
Constraints are the rules enforced on data columns on table. These are used to limit the type of data that can go into a table. This ensures the accuracy and reliability of the data in the database.
Constraints could be column level or table level. Column level constraints are applied only to one column, whereas table level constraints are applied to the whole table.
If there is any violation between the constraint and the data action, the...
Monday, March 14, 2016
WEB Designing And Web Hosting Service
9:08 PM
No comments

Hello There ..
Do You want Something beautiful, Unique and professional Website for you and your client Need..? Here we are....
As one of the Professional Web Designing Company in India successfully providing Web Design Services to our clients from more than 2+ years having most experienced professionals and dynamic young team. We will develop websites professionally by using most powerful and latest techniques to improve your on-line...
SQL ORDER BY
Another important clause used along with SQL SELECT is the ORDER BY clause. ORDER BY defines in what order do we get the data we have requested. Here is an example of using SQL ORDER BY:
SELECT * FROM Cars ORDER BY Year;
The SQL statement above will select all columns from the Cars table, and will order them by the Year column, returning a result like this:
CarMakeModelYearColor
HondaAccord EX2002Black
ToyotaCamry XLE2005Gray
BMW3...