You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First Look inside of the Setup_Tutorial folder to find the Setup files. Those files will go over in detail on what needs installed and how to install them.
If you wish, you can go through the tutorial to get the hang of it
Look into the file named "micasense_conda_env.yml". This file lists all of the dependencies you will need for the environment to work
Many are installed on Brew (MAC) or through windows
You will have to install python and python's package manager pip
This code should work in jupiter notebook when you are done
importcv2# openCVimportexiftoolimportos, globimportnumpyasnpimportpyzbar.pyzbaraspyzbarimportmatplotlib.pyplotaspltimportmapboxglprint()
print("Successfully imported all required libraries.")
print()
ifos.name=='nt':
ifos.environ.get('exiftoolpath') isNone:
print("Set the 'exiftoolpath' environment variable as described above")
else:
ifnotos.path.isfile(os.environ.get('exiftoolpath')):
print("The provided exiftool path isn't a file, check the settings")
try:
withexiftool.ExifTool(os.environ.get('exiftoolpath')) asexift:
print('Successfully executed exiftool.')
exceptExceptionase:
print("Exiftool isn't working. Double check that you've followed the instructions above.")
print("The exception text below may help to find the source of the problem:")
print()
print(e)