First time here? Check out the FAQ!

Ask Your Question
0

getting openCv error- Image step is wrong in EigenFaces.Predict() method

asked Dec 23 '13

vivek0402 gravatar image

I am getting error in EigenFaces.predict() method in java cv face recognition. The error is-

OpenCV Error: Image step is wrong (The matrix is not continuous, thus its number of rows can not be changed) in unknown function, file ......\src\opencv\modules\core\src\matrix.cpp, line 802

my code is-

public static void main(String[] args)  {
long size=6;
MatVector imgs=new MatVector(size);
int[] id={0,0,0,0,0,0};

FaceRecognizer fr=opencv_contrib.createEigenFaceRecognizer();
for(int i=0;i<=5;i++)
{
    String url="C:/Users/vivek/Documents/NetBeansProjects/Recognizer2/src/a"+(i+1)+".jpg";
    IplImage img=opencv_highgui.cvLoadImage(url);
    imgs=imgs.put(i,img);

}
fr.train(imgs,id);
IplImage testImage=opencv_highgui.cvLoadImage("C:/Users/vivek/Documents/NetBeansProjects/Recognizer2/src/a3.jpg");
CvMat mat= testImage.asCvMat();
int val=fr.predict(mat);
System.out.println(val);

}

Preview: (hide)

Comments

All images are preprocessed, grey scaled and of same size(70*70). I am using open cv-2.4.7.

vivek0402 gravatar imagevivek0402 (Dec 23 '13)edit

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!)

vivek0402 gravatar imagevivek0402 (Dec 23 '13)edit

after loading the images, convert them (both test & train imges !) to grayscale. this might solve both of your problems

berak gravatar imageberak (Dec 23 '13)edit

@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,

vivek0402 gravatar imagevivek0402 (Dec 23 '13)edit

you probably need to give valid size & type to imga when constructing it.

also, when you cvLoadImage("bl2bl2") - it loads images as 3 channel( 3*grey in your case, probably)

berak gravatar imageberak (Dec 23 '13)edit

@berak then how to load it as 1 channel??

vivek0402 gravatar imagevivek0402 (Dec 23 '13)edit

there's a flag for cvLoadImage(), no idea about javacv

berak gravatar imageberak (Dec 23 '13)edit

Ok it is working fine with LBPH FaceRecognizer but getting same eeror message for EigenFaceRecognizer.

vivek0402 gravatar imagevivek0402 (Dec 24 '13)edit

1 answer

Sort by » oldest newest most voted
0

answered Dec 25 '13

vivek0402 gravatar image

updated Dec 25 '13

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.

Preview: (hide)

Comments

THank you, it work in my project. But i wonder, we have a other scale?

jackauk gravatar imagejackauk (Jun 23 '15)edit

Question Tools

Stats

Asked: Dec 23 '13

Seen: 4,306 times

Last updated: Dec 25 '13