Intel Realsense D435 python wrapper pyrealsense.video_stream_profile类

# encoding: utf-8
# module pyrealsense2.pyrealsense2
# from D:\Yolov3_Tensorflow\python\lib\site-packages\pyrealsense2\pyrealsense2.cp36-win_amd64.pyd
# by generator 1.147
"""
LibrealsenseTM Python Bindings
        ==============================
        Library for accessing Intel RealSenseTM cameras
"""

# imports
import pybind11_builtins as __pybind11_builtins


from .stream_profile import stream_profile

class video_stream_profile(stream_profile):
    """ 
    Stream profile instance which contains additional video attributes. 
    流配置文件实例,其中包含其他视频属性。
    """
    def get_intrinsics(self): # real signature unknown; restored from __doc__
        """
        get_intrinsics(self: pyrealsense2.pyrealsense2.video_stream_profile) -> pyrealsense2.pyrealsense2.intrinsics
        
        Get stream profile instrinsics attributes.
        获取流配置文件的内在属性。
        """
        pass

    def height(self): # real signature unknown; restored from __doc__
        """ height(self: pyrealsense2.pyrealsense2.video_stream_profile) -> int """
        return 0

    def width(self): # real signature unknown; restored from __doc__
        """ width(self: pyrealsense2.pyrealsense2.video_stream_profile) -> int """
        return 0

    def __init__(self, sp): # real signature unknown; restored from __doc__
        """ __init__(self: pyrealsense2.pyrealsense2.video_stream_profile, sp: pyrealsense2.pyrealsense2.stream_profile) -> None """
        pass

    def __repr__(self): # real signature unknown; restored from __doc__
        """ __repr__(self: pyrealsense2.pyrealsense2.video_stream_profile) -> str """
        return ""

    intrinsics = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """
    Stream profile instrinsics attributes. Identical to calling get_intrinsics.
    流配置文件内在属性。 与调用get_内部函数相同。
    """




继承关系:
Intel Realsense D435 python wrapper pyrealsense.video_stream_profile类_第1张图片

你可能感兴趣的:(Intel,RealSense)