質問編集履歴
1
文法の修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
コマンドライン引数のあるファイルの呼び出し方。
|
test
CHANGED
@@ -6,9 +6,7 @@
|
|
6
6
|
|
7
7
|
pythonのプログラム内でsubprocessでファイルを呼び出したいのですが、呼び出したいファイルにコマンドライン引数を指定しているため困っています。
|
8
8
|
|
9
|
-
python run.py --model=mobilenet_thin --resize=432x368 --image=./images/sample_video_img_121.png
|
10
9
|
|
11
|
-
と言うコマンドラインで実行していたファイルを別ファイルからsubprocess.run(['python', 'run.py'])で呼び出し実行しようとしています。
|
12
10
|
|
13
11
|
助言等ありましたら、よろしくお願いします。
|
14
12
|
|