MARE's Computer Vision Study.
MareArts blog / Computer Vision & Artificial Intelligent Systems
Pages
Home
Useful Site
About Me
Contents table
MareArts
1/14/2018
Histogram Equalization, Stretching, origin histo compare and example source code
Example source code for histogram equalization
and compare with origin histogram and stretching histogram.
result is like that:
origin image & histogram
stretching image and histogram
Equalization image and histogram
<gist>
</gist>
tags:
equalizeHist,
cvtColor,
normalize,
calcHist
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)
Dithering python opencv source code (Floyd–Steinberg dithering)
This is dithering example, it make image like a stippling effect. I referenced to blew website. wiki page: https://en.wikipedia.org/wik...
OpenCV Stitching example (Stitcher class, Panorama)
Image size of origin is 320*240. Processing time is 30.96 second took. The result of stitching The resul...
Real-time N camera stitching Class.
As you can see in the following video, I created a class that stitching n cameras in real time. https://www.youtube.com/user/feelmare/sear...
python OpenCV, draw grid example source code
make well divided linear coordinate And make pair coordinate Please see code for detail explanation. import numpy as np import cv2 ...
(OpenCV Study) Background subtractor MOG, MOG2, GMG example source code (BackgroundSubtractorMOG, BackgroundSubtractorMOG2, BackgroundSubtractorGMG)
Background subtractor example souce code. OpenCV support about 3 types subtraction algorithm. Those are MOG, MOG2, GMG algorithms. Det...
opencv rtsp connection using vlc library
RTSP(Real Time Streaming Protocol) is video streaming, it usually sent from network camera. VideoCapture function in opencv also can get r...
mnist image dataset (jpg files)
The MNIST dataset is a dataset of handwritten digits, comprising 60 000 training examples and 10 000 test examples. The dataset can be downl...
Real-time stitching multi-video to one screen
* Introduction - The solution shows panorama image from multi images. The panorama images is processing by real-time stitching algorithm...
SVD (singular value decomposition) example in opencv
//Singular value decomposition : Mat w, u, v; SVDecomp(data, w, u, v); // A = U W V^T //The flags cause U and V to be returned transpose...
Deep learning study - logistic classifier #3
Logistic Classifier The logistic classifier is similar to equation of the plane. W is weight vector, X is input vector and y is output...