-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Horizontal lines when using cam_test.py #1048
Comments
@Shivam7Sharma could you share some video of these lines? |
@Erol444 Edit1:
|
@Shivam7Sharma are you streaming via network (like vnc)? This doesn't look like 90fps, and the streaming might be the issue (not the device/software). |
I am using VNC over WiFi on a Jetson Orin Nano. Are you sure this is because of VNC? The processing is being done on the jetson, and the wifi data bandwidth is supposed to be better than the USB 3.2 cable. Edit 1: I will try to run this on a connected monitor and will tell you the results. |
https://github.com/luxonis/depthai-python/assets/92198336/89f4d659-3aaf-440e-8e6b-24f9a940d408 It is still there and you can see the fps is still 55. This time the lines are even worse. They don't exist outside of the camera window. Edit 1: The lines could be the HDMI port but what about the fps issue? |
@Shivam7Sharma video please? Depends on your bandwidth, please see here: https://docs.luxonis.com/software/depthai/optimizing/ |
Sorry, in the previous reply I uploaded the video but the link doesn't work. The following is the video taken from my phone: IMG_0413.MOVBut If the resolution is 800 and the USB wire is 3.2 then I should be getting better fps according to the link you sent. |
Hi @Shivam7Sharma , 800P is limited to 120FPS. For visualization, you'll likely be limited to 60fps: If you don't visualize, you'll get better fps (I got full 120fps), code here: from depthai_sdk import OakCamera
from depthai_sdk.fps import FPSHandler
fps = FPSHandler()
def cb(packet):
fps.nextIter()
print(fps.fps())
with OakCamera() as oak:
left = oak.create_camera('left', resolution='800p', fps=120)
oak.callback([left], cb)
oak.start(blocking=True) |
Hi,
I am getting horizontal lines whenever I move in front of my OV9282 camera. I am using the cam_test.py file, and I have set the fps to 90, although it doesn't reach 90 fps. Is it because the output is raw?
The text was updated successfully, but these errors were encountered: