Skip to content

Commit

Permalink
* set default max fps to 60
Browse files Browse the repository at this point in the history
  • Loading branch information
lxowalle committed Jul 28, 2024
1 parent 291150d commit a2d3e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/vision/src/maix_camera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ namespace maix::camera
#ifdef PLATFORM_MAIXCAM
_last_read_us = time::ticks_us();
if (fps == -1 && _width <= 1280 && _height <= 720) {
_fps = 80;
_fps = 60;
} else if (fps == -1) {
_fps = 30;
} else {
Expand Down

0 comments on commit a2d3e90

Please sign in to comment.