Скрипт Matlab для мониторинга и чтения изображений из базы данных mysql и сохранения их результата в базу данных mysql
Здравствуйте, я пытаюсь написать скрипт matlab, который может извлекать изображения для базы данных mySQL-обрабатывать их и отправлять их результат в другую таблицу. Я уже установил драйвер JDBC, и вот мой сценарий до сих пор.
function [res] = photom() conn = database('e_gardener','root','',... 'Vendor','MySQL',... 'Server','localhost'); srcFiles = dir('C:\xampp\htdocs\V\uploads\*.png'); % the folder in which ur images exists for k=1:100 %suppose there are 10 image file_name= strcat('C:\xampp\htdocs\V\uploads\',srcFiles(k).name); % the path tht u have imges IM = imread(file_name); res = Detect(IM); disp(res); datainsert(conn,'photo',{'Result'},{res}) end end
<pre lang="C#">The problem with this script is.. its gets breaked when there are less then 100 images in database.. I want to write a script that can only fetch unprocessed images from database and can only when new images in data base is inserted.. in short i want my script to work as a web application.. by which if more than one user send image to database it should work ok.. im uploading these images from a android mobile application by which user can upload its image to mySQL database then Matlab script fetch that image and process the image and save its result to database from which android application fetch result and display to the user. Help me please im stuck :(</pre>
Что я уже пробовал:
Я пробовал приведенный выше код, но он не дает ожидаемого результата
Dave Kreskowiak
Вы никогда не говорили, где вы застряли, или не описывали проблему. Просто сказать: "это то, что я хочу сделать" - это не описание проблемы.