I am developing the face recognition device. It uses ov7740 camera module, optical filter passing 850 nm and NIR LEDs. The images captured in indoor and outdoor are greatly differ due to sunlight. for example, pupils got white in indoor, but not in outdoor. Someone said that image in indoor can be retrieved from image in outdoor by differential operation. So, I got two images in outdoor by turning on and off NIR LEDs, then got a differential image. But that was very dark lit, so I doubted differential operation was right to retrieve the image in indoor. Even if, it's right method, NIR component in sunlight to be subtracted would be change due to sunlight direction and object(Face) position. How can i get the illumination invariant NIR face image in both of outdoor and indoor? Please help me. Thanks in advance.
How can i get the illumination invariant NIR(Near Infrared) face image in both of outdoor and indoor?
365 Views Asked by Wang Wang At
1
There are 1 best solutions below
Related Questions in IMAGE-PROCESSING
- Need help in detecting multiple blobs
- Image based steganography that survives resizing?
- WinRT Extract Thumbnail from RAW image format
- 3D B-Spline approximation
- Qualitative and Quantitative analysis of filtered back projection / iradon in matlab
- How to detect objects in an image based on colour?
- How to make sense (handle) when computes logarithm of zero in prior information
- scilab - Drawing bounding box
- Lowpass filter non working
- Get a single line representation for multiple close by lines clustered together in opencv
- error while drawing several x-marks on a binary image in matlab
- Which method should I use to find gradient direction of pixels in an image?
- Finding Circle Boundary Pixels Coordinates and RGB Intensity Values from An RGB Input Image in Matlab
- using SURF for handdetection
- Using only one tool from CLImageEditor
Related Questions in CAMERA
- matlab crash during acquisition of pointgrey images
- My application has the camera access permission by default.How can i turned it off and ask for permission?
- 3d mouse aim camera 3rd person vertical C#
- Saving images as a burst on iOS
- Camera position based on model size?
- Three.js, Camera rotation around a point
- Android camera2.params.face rectangle placement on canvas
- Error with image view when displaying an image by camera capturing
- AVFoundation: toggle camera fails at CanAddInput
- CWAC-camera exception "Method called after release()" after exiting
- How to exactly fit camera preview to the screen
- Lock Camera orientation to portrait
- UICollectionView not showing images from CameraImage - Objective C
- Picture taken in portrait mode rotates
- android unable to resume activity on result using camera
Related Questions in FACE-RECOGNITION
- Face cropping using facial landmarks
- Fanelli face detection - PCL code vs. author's implementation
- Face reconization in android
- How to create an caffemodel file from training image and its labeled?
- Update and save face recognition model
- Luxand SDK not installing in iPhone5C
- Insufficient memory opencv
- Access a specific element inside a Mat matrix using openCV
- Error comparing values in "if" construct
- Either Photo or Live Face How to check with Android Camera
- Face recognition algorithms
- What is the best approach to perform face recognition in Windows 10 for a Universal Application?
- Open cv 3.0.0 FaceRecognizer class cannot be resolved while compiling in Linux (Ubuntu)
- Why am I getting an opencv error with size of images when they are as expected?
- Face alignment using openImaj API libraries
Related Questions in INFRARED
- irsend is not giving errors, but does not send signal on Raspbian
- Wiring Raspberry PI GPIO pins to a remote to simulate a button press?
- Normalization of Thermal image with range 0 to 40
- Kinect Infrared Camera Not working
- Decoding long Air Conditioner ir code
- Android programming remote control using IR
- Kinect - IR pattern looks different with Microsoft SDK than in real
- Emulation of an infrared input?
- is it possible to a read the code from an infrared remote controller using a digital camera?
- List of IR patterns/Codes and Device codes vs Device names
- Programming for the Apple infared remote controls
- IrDa API for Windows 7 x64
- What data to send using IR to control AC or TV using C#
- Image Alignment (RGB and Infrared)
- Infrared python
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?
Well, there are some light normalization algorithms out there. My personal favourite is
Here is a small presentation on Tan&Triggs, if you want to take a look at it. slides
It basically does gamma correction followed by Difference of Gaussian Filter and then contrast equalization.
I have applied it to gray scale images of faces and the result is really good.
If you want to try it out, you can find the code here- code
It is quite easy and fast to implement.
I am not sure how good will it work on Infra-red images, but its worth the try.
Cheers and best of luck.