2020-12-03 00:34:38 -0600 | received badge | ● Notable Question (source) |
2017-03-13 09:13:35 -0600 | received badge | ● Popular Question (source) |
2017-03-01 03:04:20 -0600 | received badge | ● Teacher (source) |
2015-08-15 17:40:37 -0600 | received badge | ● Popular Question (source) |
2014-06-30 15:21:01 -0600 | received badge | ● Necromancer (source) |
2014-01-20 00:30:38 -0600 | commented question | Suitable algorithm for Emotion Detection? Is your gender detection working correctly? what approach did you take? Please answer at following link- http://answers.opencv.org/question/26... |
2014-01-14 02:48:09 -0600 | commented question | gender detection -fisher faces. initially i tested with few images and it gave correct answer for many of them but when it was tested with large amount of test images, it gave many wrong results. I am just asking the correct way to detect gender. please suggest the better ways or improvements. |
2014-01-13 02:34:55 -0600 | commented question | gender detection -fisher faces. @berak I think it is returning the most matching face. so the result can not be believed. assume I have male face which is matching with any of the female face of training faces up to some extent but not any of the male faces. so it will return female.(This problem is arising for me cz it has recognized many of the male images to female.) I am just asking what modifications should I apply to get better results. |
2014-01-10 02:10:16 -0600 | asked a question | gender detection -fisher faces. For gender detection, I took 20 faces of men and 20 faces of women and then trained fisherface algorithm with these faces by using id 1 for all male faces and 2 for all female faces. now when I am predicting with any male or female image, it gives correct answer. but here I want to know that Is this approach is right or not. Is there any better way to this? |
2014-01-08 05:05:06 -0600 | answered a question | Eigenface algorith can be improved! By Using OpenCv library you can not do this. You will have to recode the algorithm and while computing P.C.A., neglect first three values. then launch it as revised version of Eigen FaceRecognition Algorithm. |
2014-01-08 04:49:11 -0600 | commented question | how to connect mysql to opencv? please be more clear about what you want. |
2014-01-08 04:48:20 -0600 | received badge | ● Critic (source) |
2014-01-08 04:47:57 -0600 | answered a question | how to connect mysql to opencv? please be more clear about what you want. |
2014-01-07 05:26:10 -0600 | commented question | How to add more data in previously stored trained data file? yeah it's working. thanks |
2014-01-07 04:13:30 -0600 | commented question | How to add more data in previously stored trained data file? Can you please describe how it is done in LBPHFaceRecognizer . |
2014-01-07 01:17:37 -0600 | asked a question | How to add more data in previously stored trained data file? I have trained.xml file saved previously. now I want to add more training data in this file. Is there any method to do that? I have a scenario- I have trained Face recognition algorithm with some faces and saved the data in file trained.xml. now I want to add data of one more person in that file. I tried to train the algorithm with the images of that person saperately but it gives error-
I have no idea what to do now. |
2014-01-01 03:37:41 -0600 | answered a question | Problem with Java tutorial(UnsatisfiedLinkError) Try System.load("absolute path to your opencv_java248.dll ") instead of System.loadLibrary(). and change java library path to -Djava.library.path="absolute path to your opencv_java248.dll". |
2014-01-01 03:34:08 -0600 | commented question | Problem with Java tutorial(UnsatisfiedLinkError) have you changed the path of java library i.e.--Djava.library.path="path to your library"? |
2013-12-31 23:11:25 -0600 | answered a question | OpenCV unable to load library for a dynamic web project try System.loadLibrary(relative path). if it is not working then try System.load(absolute path). and in VM option add -Djava.library.path="path of your dll" its working for me. |
2013-12-31 01:30:19 -0600 | commented question | OpenCV unable to load library for a dynamic web project I am also getting same error. if any one got the solution please post it here. |
2013-12-25 06:02:59 -0600 | answered a question | getting openCv error- Image step is wrong in EigenFaces.Predict() method Finally I got the solution of my problem. The size of my test and training images were 70* 70. I changed the size to 200* 200 and now it is working perfectly. The reason behind it is that EigenFaceRecognizer and FisherFaceRecognizer don't work with image width that are not multiple of 8 or 16(In my case). 70 is not multiple of 8 so it is not working but for image width 200(multiple of 8), it is working fine. |
2013-12-24 00:03:15 -0600 | commented question | getting openCv error- Image step is wrong in EigenFaces.Predict() method Ok it is working fine with LBPH FaceRecognizer but getting same eeror message for EigenFaceRecognizer. |
2013-12-23 05:56:52 -0600 | commented question | getting openCv error- Image step is wrong in EigenFaces.Predict() method @berak then how to load it as 1 channel?? |
2013-12-23 05:04:46 -0600 | commented question | getting openCv error- Image step is wrong in EigenFaces.Predict() method @berak Images are already gray scaled. but I tried it again- IplImage imga=new IplImage(); opencv_imgproc.cvCvtColor(img, imga,opencv_imgproc.CV_RGB2GRAY); it gives error- OpenCV Error: Bad argument (Unknown array type) in unknown function, |
2013-12-23 04:03:00 -0600 | commented question | getting openCv error- Image step is wrong in EigenFaces.Predict() method when I am using LBPfaceRecognizer, it gives error- OpenCV Error: The function/feature is not implemented (Using Original Local Binary Patterns for feature extraction only works on single-channel images (given 16) Please pass the image data as a grayscale image!) |
2013-12-23 04:02:26 -0600 | commented question | getting openCv error- Image step is wrong in EigenFaces.Predict() method All images are preprocessed, grey scaled and of same size(70*70). I am using open cv-2.4.7. |
2013-12-23 04:01:28 -0600 | asked a question | getting openCv error- Image step is wrong in EigenFaces.Predict() method I am getting error in EigenFaces.predict() method in java cv face recognition. The error is-
my code is- } |
2013-12-20 00:26:52 -0600 | asked a question | OpenCv- error in training faces. Assertion failed (0 <= i && i < (int)v.size()) I I am working on Face Recognition by using java library of OpenCv. but on training the algotithm I am getting following debugging error-
I am using OpenCv 2.4.6, JavaCv.6, netbeans7.3.1, windows8 64 bit. I am using following libraries- OpenCv-2.4.6, Javacpp.jar javacv.jar, opencv-2.4.6.0-windows-x86_64.jar, javacv-windows-x86_64.jar. Here is my code- I am stuck here please describe briefly what's the problem. |
2013-12-19 00:27:03 -0600 | asked a question | Java Cv-Algorithm.getList(stringVector) returns 0. I am using open cv 2.4.6 and java cv 0.6. for face recognition. I wanted to know the no. of algorithms present for face recognition. but in my code it returns 0. here is my code- If I am creating object for any face recognition algorithm, it returns null.does it mean No algorithm's present for face recognition? What's wrong here. |
2013-12-17 22:46:48 -0600 | received badge | ● Supporter (source) |
2013-12-17 22:46:29 -0600 | received badge | ● Scholar (source) |
2013-12-17 05:03:17 -0600 | asked a question | How to perform face recognition using java library of Open Cv. I am using java library of open cv 2.4.7. I don't know how to use its FaceRecognizer class. when I looked at the definition of this class I found this.
is there any other method to use this algorithm? As I am very new in the field of open cv so Please suggest the way to perform face recognition by using open cv java library. |
2013-12-12 03:40:33 -0600 | asked a question | Best way to create training set to train the face recognition algorithm in open cv java library I have pre processed faces. please describe the efficient way to make training set from these pre processed faces. I have 10 pre processed face per person. thank You. |
2013-12-11 06:10:16 -0600 | commented question | Face preprocessing is not working in java. I got what the problem was. actually the center of face about which the face was rotated was calculated wrongly. |
2013-12-10 11:02:35 -0600 | commented question | Face preprocessing is not working in java. @StevenPuttemans I am actually accepting only those faces in which both eyes are detected. |