Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sartaj0/golang-cv
This project was created as part of my learning of Go and my interest in the OpenCV library.
https://github.com/sartaj0/golang-cv
computer-vision go golang opencv opencv-go
Last synced: 19 days ago
JSON representation
This project was created as part of my learning of Go and my interest in the OpenCV library.
- Host: GitHub
- URL: https://github.com/sartaj0/golang-cv
- Owner: sartaj0
- License: apache-2.0
- Created: 2024-08-28T07:46:04.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T22:05:58.000Z (2 months ago)
- Last Synced: 2024-10-10T17:42:18.907Z (about 1 month ago)
- Topics: computer-vision, go, golang, opencv, opencv-go
- Language: Go
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GOCV
## Transform
### Rotate
- [x] Rotate 90
- [x] Rotate 180
- [x] Rotate Any degree (from centre)
- [ ] Rotate from different corners### Resize
- [x] Resize### Flip
- [x] Horizontal Flip
- [x] Vertical Flip### Translate
- [ ] Translate X
- [ ] Translate Y
## Image Processing### Thresholding
- [x] Binary Threshold
- [x] Inverse Binary Threshold
- [x] Truncate Thresholding
- [x] To Zero Thresholding
- [x] To Zero Inv Thresholding
- [ ] Adaptive Thresholding
- [ ] Otsu Thrsholding### Bluring
- [x] Blur
- [x] Median Blur
- [x] Gaussian Blur
- [ ] Bi-Lateral Blur### Edge Detecion
- [x] Canny
- [x] Sobel
- [x] Lapacian### Morphological Operation
- [x] Dilation
- [x] Erosion
- [x] Opening
- [x] Closing
- [ ] Morphological Gradient
- [ ] Top Hat
- [ ] Black Hat## Feature Detection
- [ ] Haris Corner Detector
- [ ] Shi-Tomasi Corner Detector
- [ ] FAST
- [ ] ORB## Feature Extraction
- [ ] SIFT
- [ ] SURF
- [ ] FAST
- [ ] ORB
- [ ] BRIEF
- [ ] HOG
- [ ] LBP
- [ ] FREAK## Feature Matching
- [ ] Brute Force Matcher
- [ ] RANSAC
- [ ] FlannBased