Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 893 Bytes

readme.md

File metadata and controls

30 lines (20 loc) · 893 Bytes

EE4H: Playing Card Recognition


About

Image of playing cards

Project Style Guide

For consistency, the first time something is done in a particular style becomes the project standard.

  • Indentation - Tabs
  • Brackets - No spaces before or after. No space before commas.
  • Braces - New line, e.g.:
void getX()
{
    return x;
}

Project Git Conventions

  • The master branch must always be stable. Only merge with the master branch if all code works. Branch to work on features or bug fixes.
  • Prefix dev branches with group names. See here for examples.

Project Design Conventions

  • The output of a function is through modifying its arguments and not by returning.