This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This gist will show you how to install your favourite browsers on WSL (Windows Subsystem for Linux) | |
# We will install: | |
## 1. Google Chrome | |
## 2. Mozilla Firefox | |
## 3. Microsoft Edge | |
# Please leave a star on the gist to enhance its visibility | |
######## [optional] Before we start ######## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from skimage.feature import hog | |
import numpy as np | |
image_height = 48 | |
image_width = 48 | |
window_size = 24 | |
window_step = 6 | |
def sliding_hog_windows(image): | |
hog_vector = [] |