This repository was archived by the owner on Nov 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
Added logs to detect target #217
Merged
Merged
Changes from 7 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
f77a1d5
Added logger to detect target script
wdan31 fd080c4
Added logger to more detect target files
wdan31 fb29611
Reverted changed to abstract class
wdan31 f625bc9
Added logger to detect target worker
wdan31 2c725a3
Added logger to detect target
wdan31 f1752ff
Rounded time taken logs to 3 decimal places
wdan31 2573c60
Added logger to factory and worker
wdan31 cf66adb
Linted python
wdan31 1e65647
Changed time formatting in logs
wdan31 213f814
updated common
wdan31 051427f
Merge branch 'main' into detect-target-worker
wdan31 7e975a8
Formatted python
wdan31 6d8ff62
Added logger to detect target script
wdan31 2770962
Added logger to more detect target files
wdan31 c18c393
Reverted changed to abstract class
wdan31 e98a8e8
Added logger to detect target worker
wdan31 ea17935
Rounded time taken logs to 3 decimal places
wdan31 453ddc2
Added logger to factory and worker
wdan31 715d0fa
Linted python
wdan31 1ef8fb6
Changed time formatting in logs
wdan31 40b6d4e
updated common
wdan31 700be6f
Added logger to detect target
wdan31 f1b0cc2
Formatted python
wdan31 f364ea2
Fixed logger implementation
wdan31 1c1b6ee
Fixed model attributes
wdan31 48a6568
Fixed logger attribute
wdan31 582c88c
Merge branch 'detect-target-worker' of https://github.com/UWARG/compu…
wdan31 e560438
Fixed logger implementation (again)
wdan31 0ed8f29
Formatted python
wdan31 412b89d
common
wdan31 8037cd4
common
wdan31 a3b89bf
Merge branch 'main' of https://github.com/UWARG/computer-vision-pytho…
wdan31 7c51eb9
updated common
wdan31 8261e09
Added detect target logger to main_2024
wdan31 94005d0
Removed detect target logger from the worker properties, logger alrea…
wdan31 3da1017
Updated detect target logs
wdan31 9cf15d2
Formatted python
wdan31 0893c78
Removed text file logging
wdan31 e7d6974
Added string repr for detectionInWorld
wdan31 5ee53de
Added repr for Detections class
wdan31 60f51e7
Formatted python
wdan31 0ddd7e1
Changed python formatting and test logger implementation
wdan31 8912617
formatted python
wdan31 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule common
updated
11 files
| +1 −1 | logger/modules/config_logger.yaml | |
| +84 −0 | logger/modules/log_file_merger.py | |
| +210 −0 | logger/modules/log_file_merger_helpers.py | |
| +336 −0 | logger/test_log_file_merger.py | |
| +133 −0 | mavlink/modules/drone_odometry_local.py | |
| +100 −0 | mavlink/modules/local_global_conversion.py | |
| +6 −0 | requirements.txt | |
| +2 −3 | setup_project.ps1 | |
| +0 −1 | setup_project.sh | |
| +65 −0 | test_connection.py | |
| +78 −0 | test_undervoltage.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For time, it's fine to just use time.time() (logger automatically puts a timestamp with a proper format like hh:mm:ss), and there's no need to round it since we would rather have more precision. (these tasks usually take much less than 1 second, so more precision is required)