07-12-2010 10:49 PM
Hi,
I have managed to acquire the image from my webcam through the vision acquisition software but now i faced a problem because i want the image to be stored in the database so that it could be view from a webpage( like a video stream).
What i did in my vi was just take the image out and connected it directly to the database and data is going in the database but when i tried to display it on the webpage it does not show.
Is it possible to do that and if so is there any tutorials i can refer to?
Solved! Go to Solution.
07-13-2010 08:23 PM
You should not save an image to database, since it'll make database slow, and difficult to write a web page to load image.
Save an image to specific location, and save image location to database.
Then, use <img> tag to call an image in web page.
07-13-2010 08:47 PM
thanks for the reply but how do i continuously write the image to a file path from the image acquired i cant connect the image out to the write jpeg file vi directly is there a way to go about this?
07-13-2010 08:50 PM
Use IMAQ Write File 2 VI
07-13-2010 08:58 PM
thanks for the help i have manged to save it.