face recognition with rangefilt
#1
Wink 

I'm looking for image recognition by using texture feature of matlab.
Reply
#2

face recognition with rangefilt


ABSTRACT

The human brain exhibits robustness against natural variability occurring in face images, yet the commonly attempted algorithms for face recognition are not modular and do not apply the principle of binary decisions made by the firing of neurons. We present a biologically inspired modular unit implemented as an algorithm for face recognition that applies pixel-wise local binary decisions on similarity of spatial-intensity change features. The results obtained with a single gallery image per person show a robust and high recognition performance: 94% on AR, 98% on Yale, 97% on ORL, 97% on FERET (fb), 92% on FERET (fc), and 96% on Caltech face image databases.

OpenCV is an open-source computer vision and machine learning library. It contains thousands of optimized algorithms, which provide a common toolkit for various computer vision applications. According to the project’s about page, OpenCV is being used in many applications, ranging from stitching Google’s Street View images to running interactive art shows.OpenCV started out as a research project inside Intel in 1999. It has been in active development since then, and evolved to support modern technologies like OpenCL and OpenGL and platforms like iOS and Android.In 1999, Half-Life was released and became extremely popular. Intel Pentium 3 was the state-of-the-art CPU, and 400-500MHz clock speeds were considered fast. And a typical CPU in 2006 when OpenCV 1.0 was released had about the same CPU performance as the A6 in an iPhone 5. Even though computer vision is traditionally considered to be a computationally intensive application, clearly our mobile devices have already passed the threshold of being able to perform useful computer vision tasks, and can be extremely versatile computer vision platforms with their attached cameras.In this article, I will provide an overview of OpenCV from an iOS developer’s perspective and introduce a few fundamental classes and concepts. Additionally, I cover how to integrate OpenCV to your iOS projects, and share the basics of Objective-C++. Finally, we’ll look at a demo project to see how OpenCV can be used on an iOS device to perform facial detection and recognition.

Overview of OpenCV

Concepts

OpenCV is a C++ API consisting of various modules containing a wide range of functions, from low-level image color space conversions to high-level machine learning tools.Using C++ APIs for iOS development is not something most of us do daily. You need to use Objective-C++ for the files calling OpenCV methods, i.e. you cannot call OpenCV methods from Swift or Objective-C. The OpenCV iOS tutorials tell you to simply change the file extensions to .mm for all classes where you’d like to use OpenCV, including view controllers. While this might work, it is not a particularly good idea. The correct approach is to write Objective-C++ wrapper classes for all OpenCV functionality you would like to use in your app. These Objective-C++ wrappers translate OpenCV’s C++ APIs to safe Objective-C APIs and can be used transparently in all Objective-C classes. Going the wrapper route, you will be able to contain C++ code in your project to the wrappers only and most likely save lots of headaches further down the road in resolving hard-to-track compile errors because a C++ header was erroneously included in a wrong file.OpenCV declares the cv namespace, such that classes are prefixed with cv::, like cv::Mat, cv::Algorithm, etc. It is possible to use using namespace cv in your .mm files in order to be able to drop the cv:: prefixes for a lot of classes, but you will still need to write them out for classes like cv::Rect and cv:Tongueoint, due to collisions with Rect and Point defined in MacTypes.h. While it’s a matter of personal preference, I prefer to use cv:: everywhere for the sake of consistency.
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: face recognition with rangefilt,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  full source code matlab fingerprint recognition minutiae match db 2 1,037 10-08-2016, 11:17 PM
Last Post: erikkshakya
  matlab code for face recognition using artificial neural networks 1 692 23-06-2016, 03:28 PM
Last Post: seminar report asees
  coin recognition using matlab codes 1 562 23-06-2016, 11:16 AM
Last Post: seminar report asees
  asp net code for face recognition in e attendance 1 594 09-06-2016, 04:27 PM
Last Post: dhanabhagya
  indian paper currency recognition matlab code download 1 632 23-05-2016, 12:13 PM
Last Post: dhanabhagya
  source code for coin recognition using neural networks 1 557 23-05-2016, 11:30 AM
Last Post: dhanabhagya
  emotion recognition in speech java code 2 633 19-05-2016, 12:37 PM
Last Post: Guest
  iris recognition with help of hough transform and winger matrix 1 549 13-05-2016, 10:15 AM
Last Post: dhanabhagya
  tamil character recognition matlab source code 1 504 12-05-2016, 10:30 AM
Last Post: dhanabhagya
  free download of matlab code for iris recognition system 2 614 11-05-2016, 11:07 PM
Last Post: Guest

Forum Jump: