Skip to content
Snippets Groups Projects
Commit fe38fbf3 authored by Chad Hanna's avatar Chad Hanna
Browse files

handle 1D arrays

parent 4be53f91
No related branches found
No related tags found
1 merge request!449Pygobject workaround
......@@ -281,6 +281,10 @@ def to_gvalue_array(arr):
# handle segments as guint64
if isinstance(arr, segment):
st = Gst.Structure(f"converter, array=(guint64) < {arr[0]:d}, {arr[1]:d} >")
elif isinstance(arr, numpy.ndarray):
arr = arr.tolist()
st = Gst.Structure.new_empty("converter")
st["array"] = Gst.ValueArray(list(arr))
else:
st = Gst.Structure.new_empty("converter")
st["array"] = Gst.ValueArray(list(arr))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment