This is a repository for the starter code of homework for EE267 (Spring 2021, Stanford University). We are going to release the starter code of each homework weekly here.
If it is your first time to use Git, please go through one of the tutorials of Git to understand basic functionalities. If you know how to clone, commit and pull, you can skip it. The GitHub's official basic tutorial is available here.
You can either use CUI or GUI to clone this repository. However, please do not Download ZIP this repository! If you prefer the GUI way, you can use GitHub desktop to clone this repository.
If you prefer the CUI way, you can clone this repository to your local machine through your terminal by
git clone https://github.com/computational-imaging/EE267-Spring2021.gitThen, you are good to go! Enjoy the homework! The submission procedure is described in the homework document.
Now, you should have this repository in your local machine. Before pulling the new homework, you need to make a commit of your change in your local repository. For example, you can execute
git add --all
git commit -m "Your message. (eg. Homework 1 is done.)"Then, execute
git pull origin masterYou are encouraged to use GitHub to collaborate with your teammate, but please do not make a public repository for homework or fork this repository. As a student, you have unlimited private repositories for free (see GitHub Education).
Although this is a public repository, it is not under any open source license. You are welcome to download the code to implement the homework for your self-learning. However, you are not allowed to redistribute it in any manner such as forking this repository or uploading the code to a public website. If you are interested in reusing the code for your academic institution, feel free to get in touch with us.