<blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">When i use the below command<br>ffmpeg -i input.wmv -r 1 -s WxH -f image2 Img-%03d.Y<br>i will get three different output file for each image which the extensions are Img-xxx.u and Img-xxx.v and Img-xxx.y<br>

it seems that the command separate the picture of each frame to 3 plane 
y,u and v. But i cant view them to see the result. are they correct or 
not? Can you recommend a software for viewing this images with 
extensions *.y *.u and *.v?<br></blockquote>Result files are RAW images. This means that these images are not compressed and has NO any header - just bytes with data.<br>I don't know are there any image viewer that can open these files directly (it should really ask you for pixel format and dimensions in this case) but you can convert them into the normal images using ffmpeg (as I already suggested):<br>
<div style="margin-left: 40px;"><span style="font-family:courier new,monospace">ffmpeg -s WxH     -pix_fmt gray -f rawvideo -i Img-001.Y frame001Y.png</span><br><span style="font-family: courier new,monospace;">ffmpeg -s W/2xH/2 -pix_fmt gray -f rawvideo -i </span><span style="font-family:courier new,monospace">Img-001.U</span><span style="font-family: courier new,monospace;"> frame</span><span style="font-family:courier new,monospace">001</span><span style="font-family:courier new,monospace">U.png</span><br>
</div>as you see dimensions and format of the input raw image should be specified explicitly (try to omit some).<br><span style="color:rgb(192, 192, 192)">-----------------------------------------------</span><br style="color:rgb(192, 192, 192)">
<span style="color:rgb(192, 192, 192)">Kirill Gavrilov,</span><br style="color:rgb(192, 192, 192)"><span style="color:rgb(192, 192, 192)">Software designer.</span><br><a href="mailto:kirill@sview.ru" target="_blank"></a><br>