文件名称:matlab导入mat代码-MATLAB-PYthon-Combine-Code:MATLAB-PYthon-Combine-Code
文件大小:5.16MB
文件格式:ZIP
更新时间:2024-06-16 06:59:22
系统开源
matlab导入mat代码 MATLAB PYthon Combine-Code 1. 准备工作 在MATLAB的官方网站,有关于如何为Python安装MATLAB API的 2. 相关代码 2.1 Python当中的 import matlab.engine eng = matlab.engine.start_matlab() res = eng.GetRowColOfImage('test_img.jpg') print res 2.2 对应的MATLAB当中的 function res = GetRowColOfImage(filename) % filename = 'test_img.jpg'; test_mat = imread(filename); row = size(test_mat,1); col = size(test_mat,2); res = [row, col]; end 2.3 代码解释 两部分的程序文件需要放在同一个路径下。输入输出参数似乎不用作特殊处理。
【文件预览】:
MATLAB-PYthon-Combine-Code-master
----.gitattributes(66B)
----ImageScript.m(103B)
----WithMatlab.py(352B)
----test_img.jpg(5.93MB)
----README.md(752B)
----triarea.m(51B)
----GetRowColOfImage.m(196B)