You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: orbbec_camera/SDK/include/libobsensor/hpp/Frame.hpp
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -553,6 +553,28 @@ class IRFrame : public VideoFrame {
553
553
~IRFrame() noexceptoverride = default;
554
554
};
555
555
556
+
/**
557
+
* @brief Define the ConfidenceFrame class, which inherits from the VideoFrame class
558
+
*
559
+
*/
560
+
classConfidenceFrame : publicVideoFrame {
561
+
562
+
public:
563
+
/**
564
+
* @brief Construct a new ConfidenceFrame object with a given pointer to the internal frame object.
565
+
*
566
+
* @attention After calling this constructor, the frame object will own the internal frame object, and the internal frame object will be deleted when the
567
+
* frame object is destroyed.
568
+
* @attention The internal frame object should not be deleted by the caller.
569
+
* @attention Please use the FrameFactory to create a Frame object.
570
+
*
571
+
* @param impl The pointer to the internal frame object.
0 commit comments