|
分類:[VB.NET/VB2005 以降]
教えてください。
Webカメラ(2〜5台程度)をUSBハブを使って接続して動画を表示したいのですが、
PCやWebカメラの種類によって表示される台数が異なります。
使用条件:Windows10、Vb.net
Webカメラ(バッファロー、ロジクールなど)
表示を安定させるためには、どのようにすれば良いでしょうか。
アドバイスなどいただけると助かります。
よろしくお願いします。
Imports AForge.Video
Imports AForge.Video.DirectShow
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim Vform = New VideoCaptureDeviceForm()
If Vform.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
VideoSourcePlayer1.VideoSource = Vform.VideoDevice
VideoSourcePlayer1.Start()
End If
If Vform.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
VideoSourcePlayer2.VideoSource = Vform.VideoDevice
VideoSourcePlayer2.Start()
End If
End Sub
End Class
|