MARE's Computer Vision Study.
MareArts blog / Computer Vision & Artificial Intelligent Systems
Pages
Home
Useful Site
Me
Guest Book
Contents table
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)
(OpenCV, data type change, copy) vector to Mat, Mat to vector
This post is about how to copy Mat data to vector and copy vector data to Mat. Reference this example source code. printf("///////...
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...
(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...
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 -> ht...
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...
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...
Example source code of extract HOG feature from images, save descriptor values to xml file, using opencv (using HOGDescriptor )
This example source code is to extract HOG feature from images. And save descriptors to XML file. The source code explain how to use HOGD...
OpenCV meanShiftFiltering example source code ( cpu: pyrMeanShiftFiltering, gpu:meanShiftFiltering, gpu:meanShiftSegmentation )
'meanshift' is clustering algorithm. It can be used color segmentation, color tracking.. This article is about color segmentation ...
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...
OpenCV Drawing Example, (line, circle, rectangle, ellipse, polyline, fillConvexPoly, putText, drawContours)
line, circle, rectangle, ellipse, polyline, fillConvexPoly, putText, drawContours example source code!!. ... //http://study....
No comments:
Post a Comment