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: src/pyzed/sl.pyx
+91-16Lines changed: 91 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
12
12
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
13
13
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
14
-
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
14
+
# DATA, OR PROFITS;POSITIONAL_TRACKING_STATE OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
15
15
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
16
16
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
17
17
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -286,6 +286,7 @@ class INPUT_TYPE(enum.Enum):
286
286
# | MULTI_CLASS_BOX_MEDIUM | Any object, bounding box based, compromise between accuracy and speed |
287
287
# | HUMAN_BODY_MEDIUM | Keypoints based, specific to human skeleton, compromise between accuracy and speed |
288
288
# | PERSON_HEAD_BOX | Bounding Box detector specialized in person heads, particulary well suited for crowded environments, the person localization is also improved |
289
+
# | PERSON_HEAD_BOX_ACCURATE | Bounding Box detector specialized in person heads, particulary well suited for crowded environments, the person localization is also improved, state of the art accuracy |
289
290
# | CUSTOM_BOX_OBJECTS | For external inference, using your own custom model and/or frameworks. This mode disables the internal inference engine, the 2D bounding box detection must be provided |
# | OK | Positional tracking is working normally. |
1058
1060
# | OFF | Positional tracking is not enabled. |
1059
1061
# | FPS_TOO_LOW | Effective FPS is too low to give proper results for motion tracking. Consider using PERFORMANCE parameters ([DEPTH_MODE.PERFORMANCE](\ref DEPTH_MODE), low camera resolution (VGA,HD720)) |
1062
+
# | SEARCHING_FLOOR_PLANE | The camera is searching for the floor plane to locate itself related to it, the REFERENCE_FRAME::WORLD will be set afterward.|
# \param object_class_filter : sets \ref object_class_filter. Default: empty list (all classes are tracked)
2536
2566
# \param object_class_detection_confidence_threshold : sets \ref object_class_detection_confidence_threshold. Default: empty dict (detection_confidence_threshold value will be taken for each class)
# Regions of the generated depth map can oscillate from one frame to another. These oscillations result from a lack of texture (too homogeneous) on an object and by image noise.
5384
-
# This parameter enables a stabilization filter that reduces these oscillations.
5385
-
# default : true
5386
-
# \note The stabilization uses the positional tracking to increase its accuracy, so the Tracking module will be enabled automatically when set to true.
5387
-
#
5388
-
# Notice that calling \ref Camera.enable_tracking() with your own parameters afterwards is still possible.
5426
+
# Regions of the generated depth map can oscillate from one frame to another. These oscillations result from a lack of texture (too homogeneous) on an object and by image noise.
5427
+
# This parameter control a stabilization filter that reduces these oscillations. In the range [0-100], 0 is disable (raw depth), smoothness is linear from 1 to 100.
5428
+
# \note The stabilization uses the positional tracking to increase its accuracy, so the Positional Tracking module will be enabled automatically when set to a value different from 0
5389
5429
@property
5390
5430
defdepth_stabilization(self):
5391
5431
returnself.init.depth_stabilization
5392
5432
5393
5433
@depth_stabilization.setter
5394
-
defdepth_stabilization(self, value: bool):
5434
+
defdepth_stabilization(self, value: int):
5395
5435
self.init.depth_stabilization = value
5396
5436
5397
5437
##
@@ -5699,17 +5739,18 @@ cdef class PositionalTrackingParameters:
0 commit comments