I am a newbie working with INTEL PERCEPTUAL COMPUTING SDK Gold version released in 2013. I am using visual studio 2012 professional version and I am using c++ samples. I have figured out a way to detect faces of people when they come in front of the camera. Now I am developing a SECURITY application which will allow user authentication after FACIAL RECOGNITION. How can I store & compare faces detected by camera on runtime?
Face recognition Intel Perceptual Computing
489 Views Asked by Kandarp Joshi At
1
There are 1 best solutions below
Related Questions in C++
- C++ using std::vector across boundaries
- Linked list without struct
- Connecting Signal QML to C++ (Qt5)
- how to get the reference of struct soap inherited in C++ Proxy/Service class
- Why we can't assign value to pointer
- Conversion of objects in c++
- shared_ptr: "is not a type" error
- C++ template using pointer and non pointer arguments in a QVector
- C++ SFML 2.2 vectors
- Lifetime of temporary objects
- I want to be able to use 4 different variables in a select statement in c ++
- segmentation fault: 11, extracting data in vector
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- How can I print all the values in this linked list inside a hash table?
- Configured TTL for A record(s) backing CNAME records
Related Questions in INTEL
- How can I compile *without* various instruction sets enabled?
- Restrict MKL optimized scipy to single thread
- Why is genymotion running so slowly?
- Intel VT-X not found
- Intel Edison with Kinect
- Formatting a MicroSD card within OSX
- Can I run Cuda or OpenCl on Intel processor graphics I7 (3rd or 4rd generation)
- Contrast reduction - intel x86
- x86 assembly fading bmp with linear interpolation
- Why I'm getting "error expected an expression" while compile cilk program
- Intel HAXM's intelhaxm-android.exe is not running
- Cordova - Media Plugin - Intel XDK - IOS build fail
- intel xdk: my links are not working
- running a python script that requires matplotlib gives: ImportError: undefined symbol: __libm_sse2_sincos
- To which cache a function pointer belongs to?
Related Questions in PERCEPTION
- Is there any distance when comparing two sets (or palettes) of colors?
- How would one know if one saw a random number generator?
- perceptron learning algorithm : convergence proof for the algorithm, why the ||w*|| is equal 1 or this condition is necessary?
- How to generate n different colors for any natural number n?
- How to approximate CSS box-shadow property using solid border only?
- Using perceptually uniform colormaps in Mayavi volumetric visualization
- Sorting (CIE)LCh colors
- Virtual Reality: Word for conflict in depth queue
- What is the shortest perceivable application response delay?
- How fast should a dynamically generated web page be created?
- Face recognition Intel Perceptual Computing
- jQuery: Increase Perceived Responsiveness During the Ready Event
- Perceptual Hash Algorithms in Python or PHP?
- I'm trying to detect a square using Point cloud library. I have pcl data from a 3D lidar in which I need to find squares
- Why does the WCAG contrast formula use the luminance and not the perceived lightness?
Related Questions in PERCEPTUAL-SDK
- Hand tracking with Intel Perceptual Computing SDK and XNA
- Create depth histogram without using too many bins
- Java development using INTEL SDK
- C++ Override Syntax
- Intel Perceptual SDK Gesture
- Convex hull & Heap corruption with openCV
- Face recognition Intel Perceptual Computing
- Writing or Copying Visual C++ console output to text file
- Calculating the average of raw data for hand tracking
- Is there a GUI library that works with the Intel Perceptual Computing SDK?
- Intel realsense SR300 and opencv is it broken?
- Creative Gesture Camera in Processing
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
i work at the studio of the perceptual computing sdk.
all i can say is:
1. you have a function called FaceAnalysis.CreateModel() which allows you to generate a model (haar cascade) of the face. this can be saved in a database after serialization (FaceAnalysis.Serialize() ).
2. you can compare that model the current face in real time by using the FaceAnalysis.Compare() function. this can give you the option to compare the current identified face model to the ones exist in the database and if they are not exist then...
3. important note: that face recognition uses 2D capabilities. therefore, if you show the sensor a picture of a guy you have in your database, it probably would fool the sensor as if that person sat in that chair. therefore, you should not productize that exact version (because it can be fooled).
hope i helped and good luck. we would love to hear what you think of the development process and on the api.