unreal.PoseSearchMode

class unreal.PoseSearchMode

Bases: EnumBase

namespace UE::PoseSearch

C++ Source:

  • Plugin: PoseSearch

  • Module: PoseSearch

  • File: PoseSearchDatabase.h

BRUTE_FORCE: PoseSearchMode = Ellipsis

Database searches will be evaluated extensively. the system will evaluate all the indexed poses to search for the best one.

Type:

0

EVENT_ONLY: PoseSearchMode = Ellipsis

Experimental, this feature might be removed without warning, not for production use search will only be performed on events.

Type:

3

PCAKD_TREE: PoseSearchMode = Ellipsis

the database projects the poses into a PCA space using only the most significant “NumberOfPrincipalComponents” dimensions, and construct a kdtree to facilitate the search.

Type:

1

Type:

Optimized search mode

VP_TREE: PoseSearchMode = Ellipsis

Experimental, this feature might be removed without warning, not for production use Optimized search mode using a vantage point tree

Type:

2