update samples from Release-11 as a part of 1.5.0 SDK stable release

This commit is contained in:
vizhur
2020-05-11 18:59:22 +00:00
parent e98131729e
commit 553fa43e17
76 changed files with 3818 additions and 622 deletions

View File

@@ -0,0 +1,13 @@
'''Misc module:
Miscellaneous helper functions and utilities.
'''
import os
import glob
# Helper function to find a file or folder path
def find_path(name, path_prefix):
for root, _, _ in os.walk(path_prefix):
if glob.glob(os.path.join(root, name)):
return root