Webcam bild wird schwarz angezeigt (Visual Studio 2013, Windows 8.1)

  • VB.NET
  • .NET (FX) 4.0

Es gibt 2 Antworten in diesem Thema. Der letzte Beitrag () ist von mox.

    Webcam bild wird schwarz angezeigt (Visual Studio 2013, Windows 8.1)

    Liebe vb-paradise Communitiy,

    Ich bin neu hier und bin gerade dabei ein webcam tool zu programmieren. Ich benutze derzeitig diesen Code:

    Quellcode

    1. Imports System.IO
    2. Public Class Form3
    3. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    4. 'Video starten'
    5. videoHandle = Me.CreateCaptureWindow(PictureBox1.Handle)
    6. 'video ende
    7. End Sub
    8. Dim videoHandle As IntPtr
    9. Declare Auto Function SendMessage Lib "user32" (ByVal hwnd As IntPtr, ByVal wMsg As Integer, ByVal wParam As Integer, ByVal lParam As Integer) As Integer
    10. Declare Auto Function capCreateCaptureWindow Lib "avicap32.dll" (ByVal lpszWindowName As String, ByVal dwStyle As Integer, ByVal x As Short, ByVal y As Integer, ByVal nWidth As Short, ByVal nHeight As Short, ByVal hWndParent As IntPtr, ByVal nID As Byte) As IntPtr
    11. Const EM_LINEFROMCHAR As Integer = &HC9
    12. Const EM_LINEINDEX As Integer = &HBB
    13. Const WS_CHILD As Integer = &H40000000
    14. Const WS_VISIBLE As Integer = &H10000000
    15. ' Für die optimale Bildqualität müsst ihr hier ein wenig rumspielen mit den zahlen...
    16. Const WM_USER As Short = &H400S
    17. Const WM_CAP_START As Short = &H400S
    18. Const WM_CAP_EDIT_COPY As Short = WM_CAP_START + 30
    19. Const WM_CAP_DRIVER_CONNECT As Short = WM_CAP_START + 10
    20. Const WM_CAP_SET_PREVIEWRATE As Short = WM_CAP_START + 52
    21. Const WM_CAP_SET_OVERLAY As Short = WM_CAP_START + 51
    22. Const WM_CAP_SET_PREVIEW As Short = WM_CAP_START + 50
    23. Const WM_CAP_DRIVER_DISCONNECT As Short = WM_CAP_START + 11
    24. Function CreateCaptureWindow(ByRef hWndParent As IntPtr, Optional ByRef x As Short = 0, Optional ByRef y As Short = 0, Optional ByRef nWidth As Short = 640, Optional ByRef nHeight As Short = 420, Optional ByRef nCameraID As Integer = 0) As IntPtr
    25. Dim previewHandle As IntPtr
    26. previewHandle = capCreateCaptureWindow("Video", WS_CHILD + WS_VISIBLE, x, y, nWidth, nHeight, hWndParent, 1)
    27. SendMessage(previewHandle, WM_CAP_DRIVER_CONNECT, nCameraID, 0)
    28. SendMessage(previewHandle, WM_CAP_SET_PREVIEWRATE, 30, 0)
    29. SendMessage(previewHandle, WM_CAP_SET_OVERLAY, 1, 0)
    30. SendMessage(previewHandle, WM_CAP_SET_PREVIEW, 1, 0)
    31. Return previewHandle
    32. End Function
    33. Sub Disconnect(ByRef nCaptureHandle As IntPtr, Optional ByRef nCameraID As Integer = 0)
    34. SendMessage(nCaptureHandle, WM_CAP_DRIVER_DISCONNECT, nCameraID, 0)
    35. End Sub
    36. Sub Form1_FormClosing() Handles Me.FormClosing
    37. Me.Disconnect(videoHandle)
    38. End Sub
    39. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    40. Me.Close()
    41. End Sub
    42. End Class


    Das Problem hierbei ist das das Bild der Picturbox1 schwarz bleibt.
    In Windows 7 läuft das ganze, aber nicht in Windows 8.1.
    An der Webcam liegt es nicht da ich schon 3 verschiedene ausprobiert habe.
    Ich habe das tool auch schon an 2 windows 8.1 rechnern ausprobiert und wie erwähnt an einem windows 7 rechner.
    Mit der Kamera App von Windows 8.1 geht es interesanter Weise.
    Ich bin euch sehr dankbar wenn mir jemand helfen kann.
    Bin am verzweifeln ;(

    Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von „iDehide“ ()