| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Camera is the second course in the Sensor Fusion ND. The purpose of this repo is to provide the exercise code to the students, so that they can practice in local system.
This repo contains lesson-wise exercises and corresponding solutions for Udacity's Sensor Fusion ND.
cmake >= 2.8
make >= 4.1 (Linux, Mac), 3.81 (Windows)
OpenCV >= 4.1
gcc/g++ >= 5.4
mkdir build && cd build cmake .. make ./<Executable_File_Name>
The file Combining Camera and Lidar/Object Detection with YOLO/detect_objects/dat/yolo/yolov3.weights is 236.52 MB; this exceeds GitHub's file size limit of 100.00 MB
Github blocks the files that have size>100MB, while pushing them. To push large files, Git provides an option called Git Large File Storage (LFS). See the instructions at https://git-lfs.github.com/ to use Git LFS. See http://git.io/iEPt8g for more information.
You can push large file only to unprotected remote branches. Master branch is by default protected. Read more here. Therefore, you'll have to push to a new unprotected branch, and later, merge it with the remote master. Use the commands below:
git checkout -b <local_branch_name>
Write the solution to your exercise.
Install Git Large File Storage (LFS). For MacOS, use
brew install git-lfs git lfs install git lfs track "<Large_file_name_if_any>" git add .gitattributes git add <path_to_the_Large_file_if_any> git config --global lfs.contenttype 0
git add . --all git commit -m "your comment"
git push --set-upstream origin <local_branch_name>
| Back | FazBrowse Home | New Git URL |