Skip to content

Latest commit

 

History

History
191 lines (91 loc) · 6.9 KB

CHANGELOG.md

File metadata and controls

191 lines (91 loc) · 6.9 KB

CHANGELOG

v0.10.0 (2024-06-06)

Documentation

  • docs: add example for using frequency domain filters (c4f017d)

Feature

  • feat(fourier): add frequency domain filters
  • Add Low pass filter for image smoothing in frequency domain
  • Add High pass filter for image sharpening in frequency domain (bb69f75)

Unknown

  • Merge branch 'main' of github.com:Preet-Sojitra/imgcv (0233bde)

v0.9.0 (2024-06-05)

Documentation

  • docs: add example for fourier transform (e0e7b2b)

Feature

  • feat(frequency-domain): add module for calculating fourier transform
  • Moudle for calculating fourier transform and inverse fourier transform (188be75)

Unknown

  • Merge branch 'main' of github.com:Preet-Sojitra/imgcv (7c8ed97)

v0.8.0 (2024-06-04)

Documentation

  • docs: add example for using laplacian, sobel and robert filter
  • Also add images for the example (9566a11)

Feature

  • feat(filters): add more linear filters
  • Add laplacian, sobel, and robert cross filters

  • Add a utility function to apply padding and convolution (6958032)

v0.7.0 (2024-06-02)

Chore

  • chore: remove some unused images from docs (e4a3321)

Documentation

  • docs: add example for filters (380f4c7)

Feature

  • feat(filters): add linear and non-linear filters
  • Add Mean/Average/Box filter
  • Add Min, Max and Median filter (6d46add)

Unknown

  • Merge branch 'main' of github.com:Preet-Sojitra/imgcv (06d28e4)

v0.6.0 (2024-05-04)

Documentation

  • docs: add example for histogram macthing (f73d1c3)

  • docs: add example of equalization for color images (7f20309)

Feature

  • feat(histogram): add histogram matching (6317180)

  • feat(histogram): add equalization for color images (a0403f5)

v0.5.0 (2024-05-04)

Documentation

  • docs: add equalization example (4b3ac7a)

Feature

  • feat(histogram): add module of histogram equalization (3f7fa0c)

Fix

  • fix(histogram): change cdf to calculate_cdf (98473e1)

v0.4.0 (2024-03-30)

Documentation

Feature

  • feat(quantization): add module to reduce gray levels in image (05d0086)

  • feat(quantization): add binary thresholding (538061b)

  • feat(connectivity): add connected component analysis (e415952)

  • feat(transformations): add gamma correction (bf6acaa)

v0.3.1 (2024-03-30)

Documentation

  • docs: update README.md

Add badges to README.md (dd9944e)

Fix

  • fix(build): update pyproject

add build instructions for python semantic release in pyproject.toml (d79d3b5)

v0.3.0 (2024-03-30)

Feature

  • feat: add ci-cd workflow (7bafbc4)

v0.2.0 (2024-03-30)

Build

  • build: update pyproject.toml (ebdbdc1)

  • build: add PSR as dev dependency (3459886)

  • build: preparing for release v0.2.0 (f929af3)

Feature

  • feat(transformations): add log transformation (48c59f2)

v0.1.0 (2024-03-30)

Build

  • build: add dev dependencies for docs (f8904ac)

  • build: add numpy as a dependency (dfdb459)

Chore

  • chore: add tests folder to gitignore (6fd4ac2)

Documentation

  • docs: add docs links in README (7955e56)

  • docs: update example.ipynb (a1fa89c)

  • docs: update readthedocs.yml (24fee1b)

  • docs: update readme and example (0c46171)

Feature

  • feat: add negative transformation (4c2ad78)

Unknown