MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
๐ก
๐ ANPR (LPR) SDK
๐ญ Persona PhotoBooth
๐งต Realtime Stitching SDK
๐ Contents table
๐ MareArts ➚
๐ฌ MareArts Live ➚
7/08/2014
STL vector sort, lambda version
//vector
vector< pair
> vote;
//data input
~~
~~
//sort
sort(vote.begin(), vote.end(), [](const pair
& A, const pair
& B){ return A.second > B.second; } );
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
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...
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...
(Opencv Study) Orb gpu feature extraction and Matching (ORB_GPU, BruteForceMatcher_GPU example source code)
This is example source cod of ORB_GPU feature detection and matching. ORB feature is known extraction speed is faster than surf and sift. ...
Sift matching C++ source code / using opencv library
Created Date : 2011.10 Language : C/C++ Tool : Microsoft Visual C++ 2008 Library & Utilized : OpenCV 2.3 Reference : SIFT referenc...
YUV color format (444, 422, 411) - simple explanation
In the YUV color format, Y is bright information, U is blue color area, V is red color area. Show the below picture. The picture is u-v col...
Video Stabilization example source code, (using cvFindHomography, cvWarpPerspective functions in openCV)
Video stabilization example source code. The principle is like that... Firstly, to obtain 2 adjacent images extract good feature to t...
(OpenCV Study) the example source code for using FarnebackOpticalFlow function (dense opticlal flow, gpu function)
This is GPU version of this post. http://feelmare.blogspot.kr/2014/04/opencv-study-calcopticalflowfarneback.html In the GPU mode, the ret...
Project - Embeded camera R&D for Real-Time fire detection surveillance in tunnel environment
Embeded camera R&D for Real-Time fire detection surveillance in tunnel environment - 2008.07.01~2009.06.30 - High Computing Power E...
swin transformer v2 - model forward and export onnx
1. load pre-trained model 2. export onnx 3. load onnx refer to code: . import warnings from torch . jit import TracerWarning warnings . ...
To test SVM trained data is whether reliable or not. (example source code)
After training SVM, we should test the trained XML data is reliable or not.. The method to extract HOG feature is refer to -> http://fe...
No comments:
Post a Comment