2

我的视频画笔在手机上显示 photocapturedevice 时的方向有些问题。它实际上应该像内置相机应用程序一样灵活,这意味着它应该适用于

  • 所有纵横比
  • 两个摄像头(后置和前置)
  • 和所有页面方向

其中至少有一个总是错误的。我试过https://projects.developer.nokia.com/cameraexplorer让它工作,但即使它有最好的方法,它在不同的页面方向上对我不起作用,并且前置摄像头旋转错误的方式(当我旋转我的逆时针时手机顺时针方向,所以我是颠倒的)。

是否有任何带有完整工作相机视频刷的代码片段?

4

3 回答 3

7

要正确显示取景器,您需要两个信息:

  • 方向:相对于页面方向的预览图片方向
  • Scale:预览图片大小和 xaml 控件之间的因子。

首先,您需要一个以画笔为背景的画布

<Canvas x:Name="viewfinderCanvas" Width="480" Height="800" >
    <Canvas.Background>
        <VideoBrush x:Name="viewfinderBrush"  Stretch="None" />
    </Canvas.Background>
</Canvas>

您必须使用Stretch="None"否则 XAML 将在视图画笔上应用缩放。现在您需要 viewfinderBrush 转换才能正确显示它。默认情况下,画布中心对应于预览图片中心,因此我们需要计算一个角度、一个比例因子,并将画布中心作为变换中心。

要计算您需要的角度:

代码 :

double ComputeAngle(PageOrientation orientation)
{
    if ((orientation & PageOrientation.Portrait) == PageOrientation.Portrait)
    {
        return  m_captureDevice.SensorRotationInDegrees;
    }
    else if ((orientation & PageOrientation.LandscapeLeft) == PageOrientation.LandscapeLeft)
    {
        return m_captureDevice.SensorRotationInDegrees - 90;
    }
    else //PageOrientation.LandscapeRight
    {
        return m_captureDevice.SensorRotationInDegrees + 90;
    }
}

比例只是画布尺寸和预览图片尺寸之间的因素:

//orient preview picture size from the computed anle.
var tmp = new CompositeTransform(){Rotation = ComputeAngle(currentPageOrientation)};
var previewSize = tmp.TransformBounds (new Rect(new Point(), new Size(m_captureDevice.PreviewResolution.Width, m_captureDevice.PreviewResolution.Height))).Size;
double s1 = viewfinderCanvas.Width/ (double)previewSize.Width;
double s2 = viewfinderCanvas.Height/ (double)previewSize.Height;
  • 如果使用最大因子,则进行拟合 => scale = Math.Max(s1, s2)
  • 如果你使用最小因子,你会做一个 Fit In => scale = Math.Min(s1, s2)

前后摄像头的视线方向相反。因此,要正确显示前置摄像头,您需要在一维中应用一面镜子。在 WP8 上,传感器方向通常为 90°,因此 Y 尺寸相反。

if (sensorLocation == CameraSensorLocation.Back)
{
    viewfinderBrush.Transform = new CompositeTransform() { 
                        Rotation = ComputeAngle(currentPageOrientation), 
                        CenterX = viewfinderCanvas.Width / 2, 
                        CenterY = viewfinderCanvas.Height / 2, 
                        ScaleX = scale, 
                        ScaleY = scale };
}
else
{
    viewfinderBrush.Transform = new CompositeTransform() { 
                        Rotation = ComputeAngle(currentPageOrientation), 
                        CenterX = viewfinderCanvas.Width / 2, 
                        CenterY = viewfinderCanvas.Height / 2, 
                        ScaleX =  scale, 
                        ScaleY = -1 * scale };//Y mirror 
}

您可以在 github 上找到示例的最新版本:https ://github.com/yan-verdavaine/wp8-sample/tree/master/Imaging/ViewFinder

于 2013-10-28T16:36:11.797 回答
3

这个问题很老,但无论如何,在使用前置摄像头时,网络上没有关于错误方向的答案。要解决这个问题,需要改变 VideBrush X 轴的方向。这是有关如何执行此操作的代码片段:

if (cameraType == CameraType.Primary)
            {
                viewfinderBrush.RelativeTransform =
                    new CompositeTransform() { CenterX = 0.5, CenterY = 0.5, Rotation = 90 };
            }
            else
            {
                viewfinderBrush.RelativeTransform =
                                       new CompositeTransform() { CenterX = 0.5, CenterY = 0.5, Rotation = 90, ScaleX = -1 };                    
            } 
于 2014-04-25T08:38:05.697 回答
0

你能解决这个问题吗?当使用前置摄像头时,我发现了同样的行为。

我在一个矩形(它承载了 videobrush 元素)上应用了旋转变换(角度 = 180°),并且它起作用了。我还更改了我的 AudioVideoCaptureDevice 对象的 EncodeWithOrientation 属性的值,并且录制的电影也可以。此解决方案仅适用于纵向模式,但是当您更改回横向时,一切都会出错,因此此技术并不能真正解决问题。也许这是 SDK 中的错误?

于 2013-07-10T10:51:24.320 回答