Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Matevz Morato committed Mar 5, 2024
1 parent b505473 commit 50e3683
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ depthai-core/build/

# builds
_builds/

.cache/
#git
*.orig
*_REMOTE_*
Expand All @@ -44,4 +44,4 @@ env.bak/
venv.bak/

# PyCharm
.idea/
.idea/
6 changes: 3 additions & 3 deletions examples/PointCloud/visualize_pointcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import cv2
import time

FPS = 15
FPS = 30
class FPSCounter:
def __init__(self):
self.frameCount = 0
Expand Down Expand Up @@ -37,10 +37,10 @@ def tick(self):
camRgb.setIspScale(1,3)
camRgb.setFps(FPS)

monoLeft.setResolution(dai.MonoCameraProperties.SensorResolution.THE_800_P)
monoLeft.setResolution(dai.MonoCameraProperties.SensorResolution.THE_400_P)
monoLeft.setCamera("left")
monoLeft.setFps(FPS)
monoRight.setResolution(dai.MonoCameraProperties.SensorResolution.THE_800_P)
monoRight.setResolution(dai.MonoCameraProperties.SensorResolution.THE_400_P)
monoRight.setCamera("right")
monoRight.setFps(FPS)

Expand Down

0 comments on commit 50e3683

Please sign in to comment.