跳到主要内容

get_data_item_with_default

函数源码

item: AnnoItem | T = get_data_item_with_default(
data: Annotations | [AnnoItem],
id: str,
default: T = None,
)

按照唯一ID获取一个标记数据项,同时提供一个未命中时的默认值。

注意,该方法不会验证数据data的格式。若无法从中找到所需数据项,返回默认值。

别名

该函数可以按以下方式之一获取

import dash_picture_annotation as dpa


dpa.get_data_item_with_default
dpa.utilities.get_data_item_with_default

参数

输入

参数类型必选
说明
dataAnnotations | [AnnoItem]要检索的标记数据。
idstr需要查询的标记数据项ID。
defaultT若数据中未找到ID,返回该值。

输出

参数类型
说明
itemAnnoItem | T检索到的标记数据项,或使用本方法时提供的默认值。

范例

获取标记数据项时提供默认值

get_anno_item_by_id_with_default.py
import pprint
import dash_picture_annotation as dpa


data = [
{"id": "a", "mark": {"x": 0, "y": 0, "width": 0, "height": 0, "type": "RECT"}},
{"id": "b", "mark": {"x": 0, "y": 0, "width": 0, "height": 0, "type": "RECT"}},
{"id": "c", "mark": {"x": 0, "y": 0, "width": 0, "height": 0, "type": "RECT"}},
{"id": "c", "mark": {"x": 1, "y": 1, "width": 0, "height": 0, "type": "RECT"}},
]

data_wrapped = {"timestamp": 0, "data": data}

pprint.pprint(dpa.get_data_item_with_default(data, "a"))
pprint.pprint(dpa.get_data_item_with_default(data_wrapped, "a"))
pprint.pprint(dpa.get_data_item_with_default(data, "c"))
pprint.pprint(dpa.get_data_item_with_default(data_wrapped, "c"))
pprint.pprint(dpa.get_data_item_with_default(data, "d"))
pprint.pprint(dpa.get_data_item_with_default(data, "d", 0))