/ImageProcessing

A Library collection of OpenCV wrappers for image processing

Primary LanguagePythonMIT LicenseMIT

Image Processing

A Library collection of OpenCV wrappers for image processing

Dependencies

  • OpenCV: Image processing library;

Functions

  • Inverse: Invert the color of an image;
  • Scaling: Scaling images by a given factor;
  • Rotation: Image rotation by a given angle;
  • SobelDerivative: Calculate the derivatives of the image;
  • ScharrDerivative: Detect the second derivatives of an image in horizontal and vertical directions;
  • Laplacian: Use laplacian to retrieve the contour of images;
  • Blur: Blur the image by a given factor;
  • GaussianBlur: Apply gaussian blur on a given image;
  • MedianBlur: Apply median blur on a given image;
  • BilateralBlur: Apply bilateral blur on a given image;

Setup

  1. Exemple
image_filters = fil.ImageFilters([
  fil.Rotation(angle = 45)
],1)
result = image_filters.Process(path)
  1. Cite me;
  2. Have fun.