我们有https://hexdocs.pm/distillery/2.0.0-rc.5/config_providers.html基本上说了(已设置了先决条件):
yaml.dump({"another_one": np.zeros((5,))}, sys.stdout)
将输出:
another_one: !!opencv-matrix
cols: 1
data: [0.0, 0.0, 0.0, 0.0, 0.0]
dt: d
rows: 5
对于PyYAML 3.11
来说是这样,但是如果我升级到PyYAML 5.1.1
并重复相同的命令,则会得到:
another_one: !!opencv-matrix
cols: 1
data:
- 0.0
- 0.0
- 0.0
- 0.0
- 0.0
dt: d
rows: 5
由于OpenCV无法读取其他格式,如何返回方括号列表格式?