Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bwheelz36/seetreat_coding_task
https://github.com/bwheelz36/seetreat_coding_task
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bwheelz36/seetreat_coding_task
- Owner: bwheelz36
- License: mit
- Created: 2023-07-26T21:03:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-28T05:18:29.000Z (over 1 year ago)
- Last Synced: 2023-07-28T06:26:04.080Z (over 1 year ago)
- Size: 170 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# seetreat_coding_task
Make a new private repository for the following activities. When you are ready, add me as a colloborator so I can review.
- Write some C++ code which reads and displays the stop sign image in this repo
- Add some input checks - for instance: does the file exist? Is the image size acceptable (feel free to define some upper bounds on image size for instance). Is the image grey scale or RGB...etc.
- Add some code that finds the location of the stop sign. hint: Keep this simple. We are looking for a simple thresold based approach, not a deep learning implementation!
- Add a second plotting function (or update the first) such that the stop sign location is outlined based on the information above.
- Write test cases for this code.
- Write a 'build_instructions.md' describing how to build and run this code using markdown language
- Write a 'test_instructions.md' describing how to run the tests
- make a pull request back to the main branch## other points
- you are welcome to but need not use cmake for build.
- You are welcome to but do need not use third party libraries such as openCV. (but if you do make sure the build instructions reflect this)
- You are welcome but do not need to use some existing test framework.