MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
🏡
🚙 ANPR (LPR) SDK
🎭 Persona PhotoBooth
🧵 Realtime Stitching SDK
📒 Contents table
🛖 MareArts ➚
🎬 MareArts Live ➚
9/18/2018
How to make Mat in opencv python
newMat_3ch = np.zeros((rows, cols,
3
),
dtype
=
"uint8"
) #3channel
newMat_1ch = np.zeros((rows, cols),
dtype
=
"uint8"
) #1channel
Mat is just numpy array.
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
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...
SICK LMS511 sensor data acquisition interface (source code, C++/MFC)
This is data acquisition source code of LMS511(SICK co.) Source code is made by MFC(vs 2008). The sensor is communicated by TCP/IP. ...
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...
OpenCV LUT(look up table) example code
OpenCV LUT example source code ... int LUTexample () { Mat img = imread( "AbyssCGI2.jpg" ); Mat lookUpTable( 1 , ...
Image warping (using opencv findHomography, warpPerspective)
fig 1. Left: set 4 points (Left Top, Right Top, Right Bottom, Left Bottom), right:warped image to (0,0) (300,0), (300,300), (0,300) Fi...
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...
window program compatibility mode is on. turn it off and then try setup again
To install the language pack for vs 2013, it made things worse. The error message "window program compatibility mode is on. turn i...
Setup Online annotation with LabelMe
Complete Tutorial: LabelMe with Login System and Dataset Management This guide provides step-by-step instructions for setting up LabelMe wit...
(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 ( "/////...
Very nice convolution explanation (korean, link)
Very Nice Convoluiton Convolution (korean) https://gaussian37.github.io/dl-concept-covolution_operation/ ✌️
No comments:
Post a Comment