REVA-QCAV/.vscode/launch.json
Laurent Fainsin 9fe76d8c61 feat: prediction script
Former-commit-id: dcaba9f9fbeaec393cea168a16287c690c5733b0 [formerly c69d87581930858ca293326002588a0188431fe7]
Former-commit-id: 39fd4965182a2c4ae8ffac2f20c7dbaf4b82a61f
2022-06-29 16:12:00 +02:00

23 lines
542 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"--input",
"SM.png",
"--output",
"test.png",
],
"justMyCode": true
}
]
}