MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
🏡
🚙 ANPR (LPR) SDK
🎭 Persona PhotoBooth
🧵 Realtime Stitching SDK
📒 Contents table
🛖 MareArts ➚
🎬 MareArts Live ➚
3/17/2020
get unique value from list (python source code)
..
import
numpy
as
np
def
unique
(
list1
)
:
x = np.array
(
list1
)
x = np.unique
(
x
)
return
list
(
x
)
list1 =
[
10
,
20
,
10
,
30
,
40
,
40
]
list1 = unique
(
list1
)
print
(
list1
)
..
output
[10, 20, 30, 40]
..
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...
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...
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...
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...
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...
Very nice convolution explanation (korean, link)
Very Nice Convoluiton Convolution (korean) https://gaussian37.github.io/dl-concept-covolution_operation/ ✌️
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...
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...
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. ...
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 (...
No comments:
Post a Comment