-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
144 additions
and
153 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
source/PreseasonTraining/2_OpenCV_ColorSegmentation/Tutorial.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Color-based segmentation in OpenCV Python: Tutorial | ||
|
||
TODO: Figure out where we put the tutorial! |
10 changes: 10 additions & 0 deletions
10
source/PreseasonTraining/2_OpenCV_ColorSegmentation/index.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Color-based segmentation in OpenCV Python | ||
|
||
```{toctree} | ||
--- | ||
maxdepth: 2 | ||
caption: Contents | ||
titlesonly: true | ||
--- | ||
Tutorial.md | ||
``` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Lesson 8: 2024 Code overview | ||
|
||
```{toctree} | ||
--- | ||
maxdepth: 2 | ||
caption: Contents | ||
titlesonly: true | ||
--- | ||
``` | ||
|
||
## Agenda | ||
|
||
* Overview of last years code | ||
* Every command and subsystem | ||
* Vision code | ||
* QnA | ||
* Watch old matches for strategy and inspiration |
This file was deleted.
Oops, something went wrong.
This file contains 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Git | ||
|
||
This is a short cheatsheet on VSCode source control usage. Feel free to use Git CLI if you already have experience or want to learn it. Full guide on VSCode source control can be found [here](https://code.visualstudio.com/docs/sourcecontrol/overview). | ||
|
||
## Structure | ||
|
||
* A Git project is called a repository | ||
* Github is a Git platform for hosting Git projects online | ||
* Inside a repo, you can create branches | ||
* Typically, the `main` or `master` is used in production | ||
* Each branch contains a list of changes called commits | ||
* Each commit contains changes to files and a message | ||
* All commits are created locally; you need to do a push to upload them to Github | ||
* To download changes, do a pull | ||
* To update your list of branches, do a fetch (VSCode has an option to do this automatically) | ||
* You can dublicate branches, work on them separately, and merge them back together | ||
* This allows everyone to work on different features independently without breaking things | ||
|
||
## Cloning | ||
|
||
* Cloning is downloading a repository | ||
* First, click on green Code button and copy the HTTPS link | ||
|
||
![Copying HTTPS link](./git_clone.png "Copying HTTPS link") | ||
|
||
* Second, go to VSCode source control tab and click clone | ||
|
||
![Cloning](./vsc_clone.png "Cloning") | ||
|
||
* Paste your link and press enter | ||
* Select a folder to save the project in | ||
|
||
![Pasting](./vsc_paste.png "Pasting") | ||
|
||
* Open the same folder next time to open the project | ||
* Please don't clone the repo every time you want to work on it! | ||
|
||
## Committing | ||
|
||
* First, make the changes you want to make | ||
* Go to source control tab and press `+` for all files you want to include in your commit | ||
* Write a message (a description) for your commit (this step is required) | ||
* You can press `-` for files you want to remove from your commit | ||
* Once you are ready, press commit button | ||
|
||
## Pushing & Pulling | ||
|
||
* After committing, you need to push | ||
* You can click VSCode's blue "sync" button, which will push and pull at the same time | ||
* Otherwise, you can click on additional actions and click push or pull | ||
|
||
![Push/pull actions](./vsc_push_pull.png "Push/pull actions") | ||
|
||
## Switching branches | ||
|
||
* To check which branch you are on, view the message input bar | ||
|
||
![Checking branch](./vsc_branch.png "Checking branch") | ||
|
||
## Merging | ||
|
||
* |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Applications | ||
|
||
```{toctree} | ||
--- | ||
maxdepth: 2 | ||
caption: Contents | ||
titlesonly: true | ||
--- | ||
git.md | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions
9
source/Resources/1_JavaProgramming/index.md → source/Resources/JavaProgramming/index.md
This file contains 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
File renamed without changes.
Empty file.
This file contains 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Team #2022 History |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# AprilTag Detection | ||
|
||
## Reading Configuration | ||
|
||
## Detection | ||
|
||
## Multithreading |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Localization |
This file contains 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 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