mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
489 B
23 lines
489 B
13 years ago
|
#!/usr/bin/python
|
||
|
|
||
|
import os
|
||
|
|
||
|
TARGET_PATH = "img"
|
||
|
|
||
|
pipe = os.popen("which dia")
|
||
|
DiaPath = pipe.readline()
|
||
|
DiaPath = DiaPath.strip("\n");
|
||
|
pipe.close()
|
||
|
|
||
|
if ("" == DiaPath):
|
||
|
print("Error: Dia tool was not found")
|
||
|
exit(-1)
|
||
|
|
||
|
print("Dia tool: \"%s\"" % DiaPath)
|
||
|
|
||
|
if (not os.path.exists(TARGET_PATH)):
|
||
|
os.mkdir("img")
|
||
|
|
||
|
for filename in os.listdir("."):
|
||
|
if ("dia" == filename[-3:]):
|
||
|
os.system("%s --export %s %s" % (DiaPath, os.path.join(TARGET_PATH, filename + ".png"), filename))
|