简体   繁体   中英

sliding window on a python image

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);
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=",")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM