Skip to content
Snippets Groups Projects

Resolve "Document algorithm functions and classes"

Merged Anders Langlie requested to merge 49-document-algorithm-functions-and-classes into master
1 file
+ 5
3
Compare changes
  • Side-by-side
  • Inline
+ 5
3
@@ -13,9 +13,11 @@ class SalamanderImage:
def calculate_descriptors(self):
"""
Calculates the descriptors if the member image
Returns: The calculated descriptors
"""
Calculates the descriptors of the member image
Returns: The calculated descriptors
"""
image = cv2.imdecode(np.fromfile(self.filename, dtype=np.uint8), cv2.IMREAD_GRAYSCALE)
Loading