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 answers
Related Questions in C++
- How to immediately apply DISPLAYCONFIG_SCALING display scaling mode with SetDisplayConfig and DISPLAYCONFIG_PATH_TARGET_INFO
- Why can't I use templates members in its specialization?
- How to fix "Access violation executing location" when using GLFW and GLAD
- Dynamic array of structures in C++/ cannot fill a dynamic array of doubles in structure from dynamic array of structures
- How do I apply the interface concept with the base-class in design?
- File refuses to compile std::erase() even if using -std=g++23
- How can I do a successful map when the number of elements to be mapped is not consistent in Thrust C++
- Can std::bit_cast be applied to an empty object?
- Unexpected inter-thread happens-before relationships from relaxed memory ordering
- How i can move element of dynamic vector in argument of function push_back for dynamic vector
- Brick Breaker Ball Bounce
- Thread-safe lock-free min where both operands can change c++
- Watchdog Timer Reset on ESP32 using Webservers
- How to solve compiler error: no matching function for call to 'dmhFS::dmhFS()' in my case?
- Conda CMAKE CXX Compiler error while compiling Pytorch
Related Questions in INTEL
- What is the parameter for CLI YOLOv8 predict to use Intel GPU?
- Optimizing Memory-Bound Loop with Indirect Prefetching
- How can I set an uncommon screen resolution on GNU/Linux with an Arc 380 GPU and X11?
- How does CPU tell between MMIO(Memory Mapped IO) and normal memory access in x86 architecture
- Using CUDA with an intel gpu
- Having issue with CPU boosting on AMD
- Do all OpenCL drivers come with the IntelOneAPI compiler
- CL_DEVICE_NOT_AVAILABLE using Intel(R)Xeon(R)Gold 6240 CPU
- Can I launch a SGX enclave without Internet?
- Intel OneApi Vtune profiler not supporting my microarchitecture
- ModuleNotFoundError: No module named 'intel_extension_for_pytorch'
- What is the microcode scoreboard?
- Why does the assembly after my sys_clone call affect the cloned process?
- Why does mov fail to set dynamic section sizes when used on a function using GCC
- weird error happened when ran fpga program
Related Questions in PERCEPTION
- Sorting (CIE)LCh colors
- Why does the WCAG contrast formula use the luminance and not the perceived lightness?
- Is there any distance when comparing two sets (or palettes) of colors?
- Finding the perceptual redundancy inside a color image in matlab
- How to approximate CSS box-shadow property using solid border only?
- perceptron learning algorithm : convergence proof for the algorithm, why the ||w*|| is equal 1 or this condition is necessary?
- 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
- Using perceptually uniform colormaps in Mayavi volumetric visualization
- How to load image before javascript
- Measuring web page "perception" speed
- Making a metric between colors (perception model) with "difference"
- Virtual Reality: Word for conflict in depth queue
- Face recognition Intel Perceptual Computing
- Neural network activation
- How would one know if one saw a random number generator?
Related Questions in PERCEPTUAL-SDK
- Intel realsense SR300 and opencv is it broken?
- Calculating the average of raw data for hand tracking
- Hand tracking with Intel Perceptual Computing SDK and XNA
- Intel Perceptual SDK Gesture
- Create depth histogram without using too many bins
- Convex hull & Heap corruption with openCV
- Writing or Copying Visual C++ console output to text file
- Face recognition Intel Perceptual Computing
- C++ Override Syntax
- Creative Gesture Camera in Processing
- Java development using INTEL SDK
- Is there a GUI library that works with the Intel Perceptual Computing SDK?
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?
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)
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.