Computer Vision Nanodegree Notes and Projects Computer Vision Nanodegree.
For more details about the program please have a look at the Nanodegree Syllabus or visit Computer Vision Nanodegree.
Utilise basic Classical Computer Vision techniques such as Image Filtering, Masking, Canny Edge Detection, Hough Lines, Fast Fourier Transform. | |
TODO |
Setup conda environment for Computer Vision Nanodegree using official guide or instruction below:
# 1. Create conda environment and activate it
conda create --name cv-nd python=3.6
activate cv-nd
# 2. Add environment to Jupyter Kernels:
conda install pip
conda install ipykernel
python -m ipykernel install --user --name <cv-nd> --display-name "<cv-nd>"
# 3. Install PyTorch and OpenCV
pip install opencv-python
conda install -c pytorch pytorch
conda install -c pytorch torchvision
# 4. Install other required packages:
pip install -r requirements.txt