MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
๐ก
๐ ANPR (LPR) SDK
๐ญ Persona PhotoBooth
๐งต Realtime Stitching SDK
๐ Contents table
๐ MareArts ➚
๐ฌ MareArts Live ➚
4/13/2024
install dlib on ubuntu
1.
sudo apt update
sudo apt install cmake
2.
pip install cmake
3.
pip install dlib
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
what is dp parameter in Hough Circle detection on opencv.
dp parameter is about resolution of voting space. dp is larger, voting resolution is small compare to image size. so dp is larger, circle...
OpenCV Drawing Example, (line, circle, rectangle, ellipse, polyline, fillConvexPoly, putText, drawContours)
line, circle, rectangle, ellipse, polyline, fillConvexPoly, putText, drawContours example source code!!. ... //http://study....
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...
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...
yuv422(YUYV) to RGB and RGB to yuv422(YUYV), (Using OpenCV and TBB)
In past, I wrote an articel about YUV 444, 422, 411 introduction and yuv rgb converting example code. refer to this page -> http://feel...
cat detection using latent SVM in opencv
The latent SVM tells the learning method used in this paper -> "Discriminatively trained deformable part models". The authors s...
OpenCV EMD(earth mover distance) example source code
EMD(earth mover distance) method is very good method to compare image similarity. But processing time is slow. For using the EMD compare, ...
Optical Flow sample source code using OpenCV
Optical Flow sample source code using OpenCV. It programed based on http://feelmare.blogspot.kr/2012/10/make-2-frame-having-time-interv...
string to LPCTSTR
Very simple way~ string s; CString cs(s.c_str()); //
Explanation for data Normalization and Min/Max calculation.
Let me explain how a specific normalized feature value is calculated using one concrete example. Let's take the feature "GroupSize...
No comments:
Post a Comment