Pārlūkot izejas kodu

Merge branch 'release/v0.2.8'

Jérôme BUISINE 3 gadi atpakaļ
vecāks
revīzija
9ff6bfa951
1 mainītis faili ar 4 papildinājumiem un 0 dzēšanām
  1. 4 0
      data_attributes.py

+ 4 - 0
data_attributes.py

@@ -104,6 +104,10 @@ def get_image_features(data_type, block):
         lab_img = transform.get_LAB_L(block)
         arr = np.array(lab_img)
 
+        # add of svd entropy
+        svd_entropy = utils.get_entropy(compression.get_SVD_s(arr))
+        data = np.append(data, svd_entropy)
+
         # add sobel complexity (kernel size of 3)
         sobelx = cv2.Sobel(arr, cv2.CV_64F, 1, 0, ksize=3)
         sobely = cv2.Sobel(arr, cv2.CV_64F, 0, 1,ksize=3)