Securitysuite Posted November 19, 2008 Report Share Posted November 19, 2008 Hi I use LabVIEW 8.5 since 1 Month. I want to record and save AVI from LiveShow with FireWire Camera. Can someone help me please !!! Quote Link to comment
crelf Posted November 19, 2008 Report Share Posted November 19, 2008 QUOTE (Securitysuite @ Nov 18 2008, 07:33 AM) Can someone help me please !!! From the number of responses that you got from your original post, I'm going to suggest that the asnwer at this stage is no. Quote Link to comment
Minh Pham Posted November 20, 2008 Report Share Posted November 20, 2008 QUOTE (Securitysuite @ Nov 18 2008, 11:33 PM) Hi I use LabVIEW 8.5 since 1 Month. I want to record and save AVI from LiveShow with FireWire Camera. Can someone help me please !!! What are the specification for your video? Can it be black and white video or it has to be color (RGB) It is possible to use multiple color planes to store a 16 bit monochrome image. When doing this, the 8 bits of the green plane and 8 bits of the blue plane would be used. This would result in an AVI that is only blue and green in color. If you are using the AVI to store the images and read them back at a later time, this might work for you. However, if you plan to view the AVI as a file, I wouldn't recommend this method. In addition, the process of converting the image to 32 bits can be time consuming (depending on image size), so the speed of acquisition and AVI frame writing would decrease. The process involves 3 steps: 1) Convert the image to an array of signed 16 bit integers (using IMAQ ImageToArray function) 2) Cast the array to unsigned 32 bits (To Unsigned Long Integer) 3) Convert the unsigned 32 bit array to an RGB(U32) image (IMAQ ArrayToColorImage). Once the final RGB(U32) image is created, you can write the AVI frame. When reading the AVI frames back in, you would need to use the inverse of the above steps (IMAQ ColorImageToArray, To Signed Integer, and IMAQArrayToImage). Hope this give you something to start with. You can also look at: http://www.alliancevision.com/us/products/...i_lib_v2_us.htm Good luck. Quote Link to comment
LAVA 1.0 Content Posted November 20, 2008 Report Share Posted November 20, 2008 You can use the AVI tools from the Vision Module pallete You can find them in: "Vision and Motion\Vision UtilitysFiles\AVI" You can find more on settings up a stream in this post http://forums.lavag.org/Analysing-over-giv...ime-t12294.html Regards Patrick Quote Link to comment
crelf Posted November 20, 2008 Report Share Posted November 20, 2008 QUOTE (Securitysuite @ Nov 18 2008, 07:33 AM) I want to record and save AVI from LiveShow with FireWire Camera. What's "LiveShow"? Is that a particular hardware or software platform? Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.