I need to do this for live video stream and saved video streams
please help
thanks
Hesham
regards, enze - www.mpegcode.com
"Hesham Desouky" <hesham@home> schrieb im Newsbeitrag
news:%23Dq7Byu...@TK2MSFTNGP09.phx.gbl...
I already written the transform filter, it uses two for loops to move
the pixels around and it works fine.
You mentioned the use of Intel IPP, is this easy to use or needs a lot
of work to get familiar with?
Regards
Hesham
I'd say it takes a good week or two to become familiar with the image
manipulation capabilities of the IPP--definitely get the book to go along
with it. It has lots of sample code and some helpful classes to use.
That being said, if your filter has the performance and features you need, I
wouldn't bother.
--
My Site (under construction): http://deepsea.no-ip.com/AV/
>> Either that, or write your own transform filter that flips the image for
>> you. Writing an algorithm to flip an image horizontally and vertically
>> wouldn't be difficult, especially for composite YUV and RGB types.
>> Effectively, you'd just be rewriting pixel values from the end to the
>> beginning (backwards) into a new buffer if you wanted both a H/V flip.
>> Planar formats would be slightly more difficult, but only because you'd run
>> the same algorithm against three buffer arrays instead of one.
>>
>> If speed is an absolute must, use the Intel IPP--you can do all sorts of
>> image manipulation, all of which has been heavily optimized to the user's
>> processor.
>I already written the transform filter, it uses two for loops to move
>the pixels around and it works fine.
>
>You mentioned the use of Intel IPP, is this easy to use or needs a lot
>of work to get familiar with?
It's not terribly hard to use, but it can be a little painful to set up
your project to use it initially. It can also be hard sometimes to
figure out how to do exactly what you need to do with the functions
available, since there may be more than one step involved.
I recommend it if you need high performance, but if your filter already
works fine I wouldn't bother.
--
New to newsgroups? Read: http://dev.6581.com/newsgroups.html
"Hesham Desouky" wrote:
Hello, I am working on a similar project (attempting to rotate a video
stream), and have not had success. Would you share any info on how you
accomplished this?
Thanks
This filter supports the 90 Degrees Right and left + Vertical and
Horizontation Flipping.
Also I supported property pages and added a mode to enable the filter to
work in performance mode to perform the rotation on a scaled down video
size.
I am preparing a Code Project article to submit this filter into it
Look at the code project at the next week to see the submission.
Regards
Hesham
I tried to use YUV format, but I am not familiar with it.
Your help to use the appropriate format will be so much appreciated.
Hesham