Home
last modified time | relevance | path

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

/external/dynamic_depth/internal/dynamic_depth/
Ddepth_map.cc187 std::vector<float> focal_table; in ParseFields() local
189 if (deserializer.ParseFloatArrayBase64(prefix, kFocalTable, &focal_table) && in ParseFields()
192 focal_table.size() / 2 != focal_table_entry_count)) { in ParseFields()
195 params.focal_table = focal_table; in ParseFields()
223 if (!params.focal_table.empty() && params.focal_table.size() % 2 != 0) { in FromData()
297 return params_.focal_table; in GetFocalTable()
301 return params_.focal_table.size() / 2; in GetFocalTableEntryCount()
339 if (!params_.focal_table.empty()) { in Serialize()
341 if (!EncodeFloatArrayBase64(params_.focal_table, in Serialize()
346 static_cast<int>(params_.focal_table.size() / 2); in Serialize()
/external/dynamic_depth/includes/dynamic_depth/
Ddepth_map.h56 std::vector<float> focal_table; member
73 software == other.software && focal_table == other.focal_table;