i'm working on an ocr (optical character recognition)
shoftware, and i am using a neural network feed forward
back propagation.
i've done the GUI that's supposed to open an image then the
neural network should take the image as an input and
display the output on an edit text (or whatever).
the thing is .. i've done the neural network, and the GUI
separatly .. i dunno how to give the image to the neural
network as an input, or how do i make it display the output
on the edit text.
"Dina " <corsair_dee@hotmail.com> wrote in message
<g7oaic$1pu$1@fred.mathworks.com>...
> i'm working on an ocr (optical character recognition)
> shoftware, and i am using a neural network feed forward
> back propagation.
>
> i've done the GUI that's supposed to open an image then
the
> neural network should take the image as an input and
> display the output on an edit text (or whatever).
>
> the thing is .. i've done the neural network, and the
GUI
> separatly .. i dunno how to give the image to the neural
> network as an input, or how do i make it display the
output
> on the edit text.
>
> plz help
>
> any help would be appreciated
>
> thanx
>
well, maybe you could add a button to your gui that calls
the nn process and passes it the image then waits for it
to do it's matching and put the result in a text box in
the gui.
If you GUI open image then it must have button line "open image". In
calback of this button must be "imread". Just Then you write filename
of m-file where you neural network:
my_neural_network;
(without .m)
To have result in edit field you need to write something like:
set(handles.edit1,'string',result_variable);
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for
all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content.
Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available
via MATLAB Central.
Read the complete Disclaimer prior to use.