MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
๐ก
๐ ANPR (LPR) SDK
๐ญ Persona PhotoBooth
๐งต Realtime Stitching SDK
๐ Contents table
๐ MareArts ➚
๐ฌ MareArts Live ➚
12/23/2013
(Arduino Study) Arduino serial communication and led on/off on the board(pin 13)
Very Easy and Fun.
Later, Serial Communication window can be used by debug window~~
digitalWrite(12, HIGH); -> This code is the function to use pull up register.
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...
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...
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, Dash line drawing example source code.
I can know all coordinate from A point to B point using "LineIterator" function in OpenCV. So this source code is applied by this...
Very nice convolution explanation (korean, link)
Very Nice Convoluiton Convolution (korean) https://gaussian37.github.io/dl-concept-covolution_operation/ ✌️
.screenrc setup for better usage
.screenrc code ~/.screenrc or vim or nano and put this # Current settings for scrolling and encoding termcapinfo xterm * ti@:te@ defutf...
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...
Pytorch model to mlir -> llvm -> executable file on Mac book m1
# Step 1: Define and train a simple PyTorch CNN model import torch import torch.nn as nn import torch.optim as optim import torchvisi...
EEG dataset and approaches
recent EEG datasets and papers from the last 5 years: OpenNeuro EEG Datasets (2020-Present) DS003190: High-density EEG during motor tasks (...
double memcpy to byte, example. useful in serial communication
When we program the serial communication, You may want to send double number in bytes, rather than strings. In other words, when we have...
No comments:
Post a Comment