フィルターのクリア

Can I send image from Matlab to iPhone?

16 ビュー (過去 30 日間)
thayanee ruennark
thayanee ruennark 2018 年 9 月 11 日
回答済み: Walter Roberson 2024 年 7 月 14 日 22:47
Hi,I'm developing iOS app. then,I need the results from Matlab and show it on application. Are there any solutions of Matlab for sending the image to iPhone. Could someone help me an example or recommendations ? I would be really appreciated. Thank you so much:)
  1 件のコメント
Umar
Umar 2024 年 7 月 14 日 7:23
編集済み: Walter Roberson 2024 年 7 月 14 日 22:34
Hi thayanee,
Save the image in a format that can be easily read by the iOS app, such as PNG or JPEG.Here is an example code snippet in Matlab to save an image as a PNG file:
% Create a sample image
image = rand(256,256,3);
% Save the image as a PNG file
imwrite(image, 'sample_image.png');
For more information on imwrite function, please refer to
Once the image is saved, you can transfer it to your iOS app using various methods like HTTP requests, FTP, or cloud storage services. Afterwards, in the iOS app, you can then retrieve the image and display it as needed.

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2024 年 7 月 14 日 22:47
With this toolbox, you can create Apple iOS app with MATLAB, including:
* Display images and play video on iPhone/iPad screen

カテゴリ

Help Center および File ExchangeMATLAB Mobile についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by