Skip to content

Commit

Permalink
add launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
rhenerose committed Apr 4, 2022
1 parent 70445db commit 5069bcf
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ cython_debug/

.vscode/*
# !.vscode/settings.json
# !.vscode/tasks.json
# !.vscode/launch.json
# !.vscode/extensions.json
# !.vscode/*.code-snippets
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/
Expand Down
43 changes: 43 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: plot 3d",
"type": "python",
"request": "launch",
"program": "./pose.py",
"args": ["--plot_landmark"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: web cam",
"type": "python",
"request": "launch",
"program": "./pose.py",
"args": ["--device", "0"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: web cam plot 3d",
"type": "python",
"request": "launch",
"program": "./pose.py",
"args": ["--device", "0", "--plot_landmark"],
"console": "integratedTerminal",
"justMyCode": true
}
]
}

0 comments on commit 5069bcf

Please sign in to comment.