0
私はウェブカメラをキャプチャするために助けが必要です。私は初心者です、これは私がこれまで持っていたものです。WPFでウェブカメラを統合するには?
<ComboBox x:Name="camera" Grid.Row="1" Grid.Column="0"
ItemsSource="{Binding Source={x:Static WPFMediaKit:MultimediaUtil.VideoInputDevices}}"
DisplayMemberPath="Name" Foreground="Black" VerticalAlignment="Bottom" Margin="8.514,0,0,11.335"/>
<StackPanel x:Name="camContainer" Grid.Row="2" Grid.Column="0" Width="320" Height="200" >
<WPFMediaKit:VideoCaptureElement Name="video" LoadedBehavior="Play" DesiredPixelHeight="240" DesiredPixelWidth="320" Width="320" Height="240"
VideoCaptureDevice="{Binding Path=SelectedItem, ElementName=videoCapDevices}" FPS="30"/>
</StackPanel>
あなたは、C#のためのウェブカメラのドライバとそれのAPIを持っている(または.NET) –