MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
ðĄ
ð Contents table
ð MareArts ➚
ðŽ MareArts Live ➚
9/15/2018
python 1 line code for N random number (tip)
Make 1~100 random integer as 10 loops
import
random
myr = [random.randrange(
1
,
100
)
for
_
in
range
(
10
)]
print
(myr)
result
[9, 67, 32, 55, 79, 47, 86, 62, 95, 30]
Thank you. ^^
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
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. ...
A | B means either: reading union type hints in Python
Python · Type hints def sensor_id(sensor: Sensor | int | None) -> int has three bars in one signature and looks like bit arit...
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...
FREE ANPR/ALPR/LPR API - Try Before You Buy (1000 Requests/Day)
ð FREE License Plate Recognition API - No Credit Card Required! Want to try ANPR (Automatic Number Plate Recognition) / ALPR (Automatic L...
How to Apply for a D-U-N-S Number
Contents What is a D-U-N-S Number? Prerequisites — Documents to Prepare Go to the D&B Application ...
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...
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...
API and ABI, and the line between them
C · Python · Linking Two acronyms one letter apart, describing promises made at two different moments. An API is what you agree t...
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...
No comments:
Post a Comment