FrameEdges Enumeration

Identifies if the user's body is visible by indicating any portion of the user that is not in the camera's field of view.

typedef enum _FrameEdges
{
    FrameEdge_None = 0,
    FrameEdge_Right = 0x1,
    FrameEdge_Left = 0x2,
    FrameEdge_Top = 0x4,
    FrameEdge_Bottom = 0x8
} FrameEdges, FrameEdge_None, FrameEdge_Right, FrameEdge_Left, FrameEdge_Top, FrameEdge_Bottom;

ConstantDescription
FrameEdge_NoneNone of the user's body is out of the camera's field of view, the user is fully visible.
FrameEdge_RightThe user's body extends to the right of the camera's field of view.
FrameEdge_LeftThe user's body extends to the left of the camera's field of view.
FrameEdge_TopThe user's body extends below the camera's field of view.
FrameEdge_BottomThe user's body extends below the camera's field of view.

Header: kinect.h
Library: kinect20.lib

Community Additions

ADD
Show: