MexCmake

Versión 1.0 (239 KB) por cui,xingxing
使用Cmake打包matlab-mex库文件
95 descargas
Actualizado 14 Oct 2021

View MexCmake on File Exchange

基于CMake交叉编译C++得到适用与Matlab的Mex加速库文件

提供基于CMake的方式编译C++代码,代替mex函数打包,配置简单,通用,可修改,不依赖于特定的编译器,平台,工具IDE等,本示例展示了使用一个readBinFile.cpp文件如何通过交叉编译为对应平台的mex文件(即不同平台对应的库文件)。

编译后缀文件

  • windows: *.mexw64
  • Unix: *.mexa64
  • Mac: *.mexmaci64

requirements

  • desktop Matlab 2018a or later
  • or the only contents of the folder MATLAB_ROOT/extern
    Only one of the above two is required, where the MATLAB_ROOT path is the result of executing matlabroot from the matlab command window.

how to compile

mkdir build
cd build
cmake -G"MinGW Makefiles" ..
make 
make install

即可得到对应平台的mex文件

how to use mex file in matlab

Copy the mex file to the current working directory of matlab and execute the following statement to parse the image.

outImg = myGccMex("dataImgUnrealori.bin");
imshow(outImg)

Citar como

cui,xingxing (2024). MexCmake (https://github.com/cuixingxing150/MexCmake/releases/tag/v1.0), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2021a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Etiquetas Añadir etiquetas

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.