Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written the following code to use imresize function in mex file.

   #include "mex.h"

  void mexFunction(int nlhs, mxArray *plhs[], int nrhs, mxArray *prhs[])
  {
mxArray *output[1];
mxArray *input[3];

input[0] = prhs[0];
input[1] = mxCreateDoubleMatrix(1, 1, mxCOMPLEX);
double *x = mxGetPr(input[1]);
x[0] = 0.5;

//double *p = mxGetPr(input[1]);
//mexPrintf("%f\n", p[0]);
input[2] = mxCreateString("bilinear");



mexCallMATLAB(0, NULL, 1, &prhs[0], "imshow");
mexCallMATLAB(1, output, 3, input, "imresize");
mexCallMATLAB(0, NULL, 1, &output[0], "imshow");    
    }

It gives an error: Function IMRESIZE expected its second input, SCALE, to be nonzero. How can I fix it?

share|improve this question
7  
input[1] = mxCreateDoubleMatrix(1, 1, mxCOMPLEX); replace mxCOMPLEX with mxREAL. And then everything is fine. – FihopZz Apr 15 '11 at 1:05
That's a peculiar error message that you got when passing a complex scale to imresize. I reported it to the Image Processing Toolbox team. – SCFrench May 30 '11 at 2:08
@FihopZz Could you post your comment as an answer, otherwise the question will remain open. – Dennis Jaheruddin May 3 at 9:58

1 Answer

So just try to replace the following code:

input[1] = mxCreateDoubleMatrix(1, 1, mxCOMPLEX);
double *x = mxGetPr(input[1]);
x[0] = 0.5;

with this line

 input[1]=mxCreateDoubleScalar(0.5);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.