简体   繁体   中英

Import image in MATLAB from phpMyAdmin

我想读取MySQL数据库中存在的MATLAB中的图像文件,例如phpMyAdmin。

Check the function database . You need to have the access credentials. Next, you can create an sql query.

datasource = "";
username = "yourUsername";
password = "password";

conn = database(datasource,username,password);

selectquery = 'SELECT image FROM iamgeTable';
data = select(conn,selectquery);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM