Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
hackassin
Edit Copy
Star
GitHub Repository:
hackassin/learnopencv
Path:
blob/master/Efficient-image-loading/tools.py
3
1
1
8
views
1
import
os
2
3
4
def
get_images_paths
(
d
)
:
5
return
[
os
.
path
.
join
(
d
,
f
)
for
f
in
os
.
listdir
(
d
)
]
6
7