MCPcopy Create free account
hub / github.com/CUT3R/CUT3R / writeNpyFile

Function writeNpyFile

datasets_preprocess/flow_IO.py:233–238  ·  view source on GitHub ↗

write numpy array to file. arr: numpy array to write filepath: file to write to

(arr, filepath)

Source from the content-addressed store, hash-verified

231
232
233def writeNpyFile(arr, filepath):
234 """write numpy array to file.
235 arr: numpy array to write
236 filepath: file to write to
237 """
238 np.save(filepath, arr)
239
240
241def writeFlo5File(flow, filename):

Callers 2

writeFlowFileFunction · 0.85
writeDispFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected