Skip to content
Prev Previous commit
Next Next commit
change import order
  • Loading branch information
Mozartuss committed Oct 15, 2021
commit 97bf960cfc86b9b1d2f14d97212ef3d5a14ca174
2 changes: 1 addition & 1 deletion digital_image_processing/filters/gabor_filter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Implementation of the Gaborfilter
# https://en.wikipedia.org/wiki/Gabor_filter
import numpy as np
from cv2 import imread, cvtColor, COLOR_BGR2GRAY, filter2D, CV_8UC3, imshow, waitKey
from cv2 import COLOR_BGR2GRAY, CV_8UC3, cvtColor, filter2D, imread, imshow, waitKey


def gabor_filter_kernel(
Expand Down