3

I want to transform this matlab code to python:

images = []; 
foreach image in images:
     features = [];
     windows = extractWindows(image,size=(30,30),stride=(30,30));
     foreach window in windows:
          featureVector = extractFeatures(window);
          features.append(featureVector);
     saveAsCSV('image_name_features.txt',features);
Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
frank97
  • 43
  • 1
  • 3

1 Answers1

8
def sliding_window(image, stepSize, windowSize):
  for y in range(0, image.shape[0], stepSize):
    for x in range(0, image.shape[1], stepSize):
      yield (x, y, image[y:y + windowSize[1], x:x + windowSize[0]])

def extractFeatures(window):
  # fast? sift? orb? or something?
  return features

images = []
for image in images:
  features = []
  windows = sliding_window(image, 30, (30, 30))
  for window in windows:
    featureVector = extractFeatures(window)
    features.append(featureVector)

  numpy.savetxt('image_name_features.txt', feautres, delimiter=",")
Chanran Kim
  • 439
  • 3
  • 8