Compartilhar via


ImageFeatureValue.VideoFrame Propriedade

Definição

Obtém o quadro de vídeo.

public:
 property VideoFrame ^ VideoFrame { VideoFrame ^ get(); };
VideoFrame VideoFrame();
public VideoFrame VideoFrame { get; }
var videoFrame = imageFeatureValue.videoFrame;
Public ReadOnly Property VideoFrame As VideoFrame

Valor da propriedade

O quadro de vídeo.

Exemplos

O exemplo trivial a seguir mostra como você pode criar um ImageFeatureValue de um VideoFrame e, posteriormente, como obter o VideoFrame do qual um ImageFeatureValue foi criado.

#include <winrt/Windows.AI.MachineLearning.h>
#include <winrt/Windows.Media.h>
using namespace winrt;
using namespace Windows::AI::MachineLearning;
using namespace Windows::Media;

...

ImageFeatureValue CreateInputFeature(VideoFrame videoFrame)
{
	ImageFeatureValue imageFeatureValue{ ImageFeatureValue::CreateFromVideoFrame(videoFrame) };
	return imageFeatureValue;
}

VideoFrame GetVideoFrame(ImageFeatureValue imageFeatureValue)
{
	VideoFrame videoFrame{ imageFeatureValue.VideoFrame() };
	return videoFrame;
}

Comentários

Windows Server

Para usar essa API no Windows Server, você deve usar o Windows Server 2019 com a Experiência desktop.

Acesso thread-safe

Essa API é thread-safe.

Aplica-se a