views:

308

answers:

2

is this possible?

+1  A: 

Once you have got the video displayed (see your previous question), set the display element's LayoutTransform or RenderTransform to a suitable RotateTransform. If you wish to flip the video instead, use a ScaleTransform with a negative scale. If you wish to do both, use a TransformGroup containing both a ScaleTransform and a RotateTransform.

itowlson
A: 

Check out the WPF MediaKit, which has code for webcams. You can use standard WPF transforms to do your rotating.

Will