Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bwheelz36/seetreat_coding_task


https://github.com/bwheelz36/seetreat_coding_task

Last synced: 24 days ago
JSON representation

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.