Ask Your Question

Mustansar Saeed's profile - activity

2016-08-15 05:57:34 -0600 commented question Eye detection and recognition

Why this question was delete? I want to take suggestions which approach should be used?

2016-08-13 04:08:52 -0600 asked a question Eye detection and recognition

Hi,

I am newbie to Open CV. I am in a situation where I have to decide whether I have to buy IRIS device for eye detection and recognition or I should do RnD to build application using Open CV which provides Eye recognition feature for Attendance system? Please recommend which is the better approach in terms of performance and money? Currently I have option to buy device from http://www.iritech.com/. Please recommend accordingly which is the best approach from the above mentioned or any other? I have android phones and need suggestions for that.

Best Regards,

2016-05-26 14:02:11 -0600 received badge  Student (source)
2016-02-24 10:47:14 -0600 commented question Detect real time face only

How to do depth vision then? I just want to differential either its a real face or pictured face

2016-02-24 06:33:29 -0600 commented question Detect real time face only

Hmmmm. okay. I just wanted to know that is there any way to make two images or whatever to achieve this.

2016-02-24 05:17:02 -0600 commented question Detect real time face only

I am newbie to opencv so please recommend accordingly that how to achieve that??

2016-02-24 05:10:39 -0600 commented question Detect real time face only

How to achieve then???

2016-02-24 03:40:15 -0600 asked a question Detect real time face only

Hi,

I am trying to detect real time face detection. I have run face-detection-sample but the problem is sample is also detecting the faces from images as well. How can I setup Open CV to detect real time faces and ignoring images??

Thanks in advance.

2016-02-24 03:19:25 -0600 received badge  Editor (source)
2016-02-24 00:12:00 -0600 asked a question Detect tilted face

Hi I am trying to detect the tilted face using Opencv4android. I have run face-detection-sample, I have noticed that when face is straight, its detected but when the face is right/left tilted or upward then it is not detected. What is the reason behind it?

How tilted face detection is implemented?

2016-02-24 00:07:52 -0600 received badge  Enthusiast
2016-02-22 00:21:05 -0600 asked a question Camera preview is sideways

Hi, I have integrated opencv4android face detection sample. I want to show Camera in Portrait mode, the thing is the default JavaCameraView is rotated 90 degree to the left. I apply some rotation on CameraBridgeView and JavaCameraView but after that I am unable to detect the faces.

CameraBridgeViewBase.java

deliveAndDrawFrame() {
                Matrix matrix = new Matrix();
                matrix.preTranslate((canvas.getWidth() - mCacheBitmap.getWidth()) / 2,(canvas.getHeight() - mCacheBitmap.getHeight()) / 2);
                if(cameraId == Camera.CameraInfo.CAMERA_FACING_FRONT) {
                    matrix.postRotate(-degrees,(canvas.getWidth()) / 2,(canvas.getHeight()) / 2);
                } else {
                    matrix.postRotate(degrees,(canvas.getWidth()) / 2,(canvas.getHeight()) / 2);
                }
                canvas.drawBitmap(mCacheBitmap, matrix, new Paint());
}

The above function has shown the preview right to my requiremnt in Portrait mode. I also adjusted the Camera orientation as JavaCameraView

initializeCamera() {
....
int degrees = getCameraDisplayOrientation();
mCamera.setDisplayOrientation(degrees);
......
}

Can anyone please let me know what can be the issue? Why after this I am unable to detect the faces?

2016-02-19 04:38:17 -0600 asked a question False negatives in Face Detection

Hi,

I have integrated OpenCv For Android successfully but the problem is it also shows false negatives. Sometimes it show faces when there is not. I have tried to set the setMinFaceSize to .5, .4,.3.2 all shows fase negativs, How to eradicate false negatives?