Open fatmafarah opened 3 years ago
have you checked with : https://github.com/basler/pypylon/issues/72#issuecomment-687710210
for better readability, please edit your issue and remove the single ticks ( these are only for one-line code ) and replace by ``` ...code ...```
In the edit window of the issues you even have a button for code pasting. just select all lines of code and click
Technical question: what do you want to reach with ?
cam.StartGrabbing(1)
Hello @pmdbpc , please i need help, I'm working with a basler camera and tkinter like you and i have some problems. If you can please contact me on oumayma.belhajsalah96@gmail.com
I am trying to feed my gui written with tkinter python with live camera capture with Basler camera USB3. I wrote this code but it's not working. My camera is Basler daA1280-54um (23625361). I want to capture the video and show it in a label or frame, and when there is hardware trigger in the camera take that image and show it in a different label.
` from pypylon import pylon import cv2 from tkinter import * from PIL import Image, ImageTk
root=Tk() app = Frame(root, bg="white") app.grid()
Create a label in the frame
lmain1 = Label(app) lmain2 = Label(app) lmain1.grid(row=0,column=0) lmain2.grid(row=0,column=1) root.mainloop()`
Can someone tell me why it's not working