15 lines
488 B
Python
15 lines
488 B
Python
![]() |
import easygui
|
||
|
from towerDataSplit import DataSplit
|
||
|
|
||
|
|
||
|
inputDataPath = easygui.diropenbox('第1/2步', '选择towersif原始数据文件夹')
|
||
|
outputDataPath = easygui.diropenbox('第2/2步', '选择输出文件夹')
|
||
|
|
||
|
# inputDataPath = r"D:\PycharmProjects\towerDataSplit\sampleData"
|
||
|
# outputDataPath = r"D:\PycharmProjects\towerDataSplit\Data_split"
|
||
|
|
||
|
data_split = DataSplit(inputDataPath, outputDataPath)
|
||
|
data_split.start_split_process()
|
||
|
|
||
|
easygui.msgbox("数据分割完成!", "提示")
|