Skip to content

Commit

Permalink
setIsp3aFps deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
Matevz Morato committed Jun 5, 2024
1 parent 512c7ba commit 2214af3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/depthai/pipeline/node/Camera.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ class Camera : public NodeCRTP<Node, Camera, CameraProperties> {
* Note that camera controls will be processed at this rate. E.g. if camera is running at 30 fps, and camera control is sent at every frame,
* but 3A fps is set to 15, the camera control messages will be processed at 15 fps rate, which will lead to queueing.
*/
void setIsp3aFps(int isp3aFps);
[[deprecated("setIsp3aFps is unstable")]] void setIsp3aFps(int isp3aFps);

/**
* Get rate at which camera should produce frames
Expand Down
2 changes: 1 addition & 1 deletion include/depthai/pipeline/node/ColorCamera.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class ColorCamera : public NodeCRTP<Node, ColorCamera, ColorCameraProperties> {
* but 3A fps is set to 15, the camera control messages will be processed at 15 fps rate, which will lead to queueing.
*/
void setIsp3aFps(int isp3aFps);
[[deprecated("setIsp3aFps is unstable")]] void setIsp3aFps(int isp3aFps);

// Set events on which frames will be received
void setFrameEventFilter(const std::vector<dai::FrameEvent>& events);
Expand Down
2 changes: 1 addition & 1 deletion include/depthai/pipeline/node/MonoCamera.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class MonoCamera : public NodeCRTP<Node, MonoCamera, MonoCameraProperties> {
* but 3A fps is set to 15, the camera control messages will be processed at 15 fps rate, which will lead to queueing.
*/
void setIsp3aFps(int isp3aFps);
[[deprecated("setIsp3aFps is unstable")]] void setIsp3aFps(int isp3aFps);

/**
* Get rate at which camera should produce frames
Expand Down

0 comments on commit 2214af3

Please sign in to comment.