Testing installation succeeds and prints imported libraries and executed exiftool. When I run the next snippet, image.Image function is throwing an error (at line 72: provided filepath does not have a band name) like it is unable to pull from the exif? I am using the sample imagery provided from the github repository. Oddly, I do not have this error on another machine that has an older installation of the imageprocessing repository and older micasense environment.
c:\Users\barkmatt\imageprocessing\micasense\image.py in init(self, image_path, exiftool_obj)
70
71 if self.meta.band_name() is None:
---> 72 raise ValueError("Provided file path does not have a band name: {}".format(image_path))
73 if self.meta.band_name().upper() != 'LWIR' and not self.meta.supports_radiometric_calibration():
74 raise ValueError('Library requires images taken with RedEdge-(3/M/MX) camera firmware v2.1.0 or later. ' +
ValueError: Provided file path does not have a band name: .\data\0000SET\000\IMG_0000_1.tif
Testing installation succeeds and prints imported libraries and executed exiftool. When I run the next snippet, image.Image function is throwing an error (at line 72: provided filepath does not have a band name) like it is unable to pull from the exif? I am using the sample imagery provided from the github repository. Oddly, I do not have this error on another machine that has an older installation of the imageprocessing repository and older micasense environment.
c:\Users\barkmatt\imageprocessing\micasense\image.py in init(self, image_path, exiftool_obj) 70 71 if self.meta.band_name() is None: ---> 72 raise ValueError("Provided file path does not have a band name: {}".format(image_path)) 73 if self.meta.band_name().upper() != 'LWIR' and not self.meta.supports_radiometric_calibration(): 74 raise ValueError('Library requires images taken with RedEdge-(3/M/MX) camera firmware v2.1.0 or later. ' +
ValueError: Provided file path does not have a band name: .\data\0000SET\000\IMG_0000_1.tif
Sorry, relatively green with python.