MareArts Computer Vision Study.
Computer Vision & Machine Learning Research Laboratory
Pages
π‘
π Contents table
π MareArts ➚
π¬ MareArts Live ➚
Showing posts with label
create folder
.
Show all posts
Showing posts with label
create folder
.
Show all posts
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
ππ»♂️
10/28/2018
python make folder (create directory)
import
os
makeFolder
=
'folderName'
if
not
os.path.
exists
(makeFolder):
#if not exist
os.
makedirs
(makeFolder)
#make folder
Older Posts
Home
Subscribe to:
Comments (Atom)
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 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...
Video Stabilization example source code, (using cvFindHomography, cvWarpPerspective functions in openCV)
Video stabilization example source code. The principle is like that... Firstly, to obtain 2 adjacent images extract good feature to t...
ONNX Runtime with ROCm (AMD GPU) Setup Guide
ONNX Runtime with ROCm (AMD GPU) Setup Guide Installation Prerequisites ROCm installed (6.0+ recommended) Python 3.8-3.10 Install ONNX Runti...
(OpenCV Study) Background subtraction and Draw blob to red rectangle (example source code)
I use MOG2 algorithm to background subtraction. The process is resize to small for more fast processing to blur for avoid noise affectio...
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...
mnist image dataset (jpg files)
The MNIST dataset is a dataset of handwritten digits, comprising 60 000 training examples and 10 000 test examples. The dataset can be downl...
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...
Two Image mosaic (paranoma) based on SIFT / C++ source (OpenCV) / SIFT νΉμ§ μΆμΆκΈ°λ₯Ό μ΄μ©ν λμ₯μ μμμ λͺ¨μμ΅(νλΌλ Έλ§) μμμΌλ‘ λ§λ€κΈ°
Created Date : 2011.2 Language : C/C++ Tool : Microsoft Visual C++ 2010 Library & Utilized : OpenCV 2.2 Reference : Interent Refer...
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...