MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
ðĄ
ð Contents table
ð MareArts ➚
ðŽ MareArts Live ➚
11/28/2021
python, simple mkdir and remove folder
import
os
#remove folder
os.system(
'rm -rf ./folder1/folder2/'
)
#make folder
os.system(
'mkdir -pv ./folder1/folder2/'
)
Thank you.
www.marearts.com
ððŧ♂️
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Sift matching C++ source code / using opencv library
Created Date : 2011.10 Language : C/C++ Tool : Microsoft Visual C++ 2008 Library & Utilized : OpenCV 2.3 Reference : SIFT referenc...
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...
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...
AMD GPU Programming Primer — Threads, Waves, Tiles & Vector Loads
AMD GPU Programming Primer Threads · Waves · Memory · Tile Distribution · Vector Loads · MFMA ...
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...
Optical Flow sample source code using OpenCV
Optical Flow sample source code using OpenCV. It programed based on http://feelmare.blogspot.kr/2012/10/make-2-frame-having-time-interv...
Google Coral USB Edge TPU Implementation Guide
Google Coral USB Edge TPU Implementation Guide 1. Installation and Troubleshooting 1.1 Hardware Requirements Google Coral USB Accelerator ...
opencv rtsp connection using vlc library
RTSP(Real Time Streaming Protocol) is video streaming, it usually sent from network camera. VideoCapture function in opencv also can get r...
Contour compare using OpenCV(source code), cvFindContours, cvMatchShapes
There is shape match function in the OpenCV. The function name is cvMatchShapes. This function compares two contours. If two contours is ...
No comments:
Post a Comment