Home
last modified time | relevance | path

Searched refs:DepthItemSemantic (Results 1 – 2 of 2) sorted by relevance

/external/dynamic_depth/includes/dynamic_depth/
Ddepth_map.h29 enum class DepthItemSemantic { kDepth = 1, kSegmentation = 2 }; enum
39 DepthItemSemantic item_semantic = DepthItemSemantic::kDepth;
106 DepthItemSemantic GetItemSemantic() const;
/external/dynamic_depth/internal/dynamic_depth/
Ddepth_map.cc50 string ItemSemanticToString(DepthItemSemantic item_semantic) { in ItemSemanticToString()
52 case DepthItemSemantic::kDepth: in ItemSemanticToString()
54 case DepthItemSemantic::kSegmentation: in ItemSemanticToString()
59 DepthItemSemantic StringToItemSemantic(const string& semantic_str) { in StringToItemSemantic()
64 return DepthItemSemantic::kSegmentation; in StringToItemSemantic()
67 return DepthItemSemantic::kDepth; in StringToItemSemantic()
284 DepthItemSemantic DepthMap::GetItemSemantic() const { in GetItemSemantic()