Refactor: Extracted Edge Dection + added tests

This commit is contained in:
AlexanderHD27
2024-09-18 00:39:22 +02:00
parent e1a084697e
commit 4a805dcefe
20 changed files with 69 additions and 2 deletions

15
board-vision/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"python.testing.pytestArgs": [
"--cov-report", "xml:cov.xml",
"--cov-report", "term",
"--cov=src",
"test",
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"coverage-gutters.coverageFileNames": [
"cov.xml",
],
"coverage-gutters.coverageBaseDir": "**",
"testing.coverageToolbarEnabled": true
}