How do I convert to Mex from Cpp using Xcode ver 10

조회 수: 4 (최근 30일)
Stelios Fanourakis
Stelios Fanourakis 2019년 6월 18일
댓글: Walter Roberson 2019년 6월 23일
For Mac Users, I need that info. Thanks
  댓글 수: 14
Rik
Rik 2019년 6월 19일
With example.mexmaci64 you can use example('input') from inside Matlab (assuming that your function takes such an input).
Stelios Fanourakis
Stelios Fanourakis 2019년 6월 20일
Yes. The point is that I don't know the number and type of inputs the function requires since I cannot open it to see it.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2019년 6월 20일
Your SegmentBoneDP.cpp file is the source code.
If you need something that converts C++ code into MATLAB code, then you are using the wrong product family. There is no known program that converts C++ code into MATLAB code.
"The point is that I don't know the number and type of inputs the function requires since I cannot open it to see it. "
You read them out of the C++ source code.
Bness = (double *)mxGetData(prhs[0]);
double *pF0,*pF1,*pBth,*pJumpConst;
pF0 = (double *)mxGetData(prhs[1]);
pF1 = (double *)mxGetData(prhs[2]);
pBth = (double *)mxGetData(prhs[3]);
pJumpConst = (double *)mxGetData(prhs[4]);
The first parameter is Bness, and is a 2D double array.
The second parameter is F0, and it is a double scalar. It appears to be used as a weight or smoothing factor
The third parameter is F1, and it is a double scalar. It appears to be used as a weight or smoothing factor
The fourth parameter is Bth, and it is a double scalar. It is a threshold between bone and no bone.
The fifth parameter is JumpConst, and it is a double scalar. It appears to be some kind of penalty for moving from bone to no bone.
The output is an array the same size as Bness, and it is a real double 2D array.

추가 답변 (1개)

Jan
Jan 2019년 6월 19일
편집: Jan 2019년 6월 19일
Wow, what an inefficient communication.
As Walter has said already, the line
const int *DimsBness;
must be changed to
const mwSize *DimsBness;
This might matter other variables of the type int also.
C++ Mex files are compiled to mexmaci64 files. Of course you can neither edit these output files, not run it directly. This is the nature of compiled files. Simply put this file to a folder, which is included to your Matlab path and call it like any other function stored in an M-file:
result = BoneSegmentationDP(args)
where args are the 5 needed inputs.
"I was getting the error message that I needed to update my Xcode compiler in order to utilize the new API, that's why I used mex -compatibleArrayDims BoneSegmentationDP.cpp"
No. If you get the message, that the Xcode compiler needs an update, update the Xcode compiler. It is off-track to play around with the compatibleArrayDims flag.
  댓글 수: 8
Walter Roberson
Walter Roberson 2019년 6월 23일
mwSize is size_t which is unsigned long long for your system. It causes 8 bytes to be reserved for each variable that is to store an array size. That permits arrays larger than 2 gigabytes. Your existing use of int for the size is reserving only 4 bytes for array sizes.
Now you might be thinking that your particular use never involves arrays 2 gb or larger and you might be thinking that means that you do not need to use the larger variable. However 8 bytes is what matlab uses internally now and when matlab builds its internal description of the parameters to the call it is going to allocate memory based on the larger size. If your code were to try to use the sizes as if only 32 bits were allocated for the size then you would be looking for the second dimension size at the wrong place in memory.
Walter Roberson
Walter Roberson 2019년 6월 23일
"Where do I replace them? In the C++ code?"
Yes. Edit the darn C++ code.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Write C Functions Callable from MATLAB (MEX Files)에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by