Skip to content

joaofmari/SIN393_Introduction-to-computer-vision_2023

Repository files navigation

SIN-393 - Introduction to computer vision (2023)

Prof. João Fernando Mari (joaofmari.github.io)


Lecture 01 - Classifying images

Lecture 02 - Introduction to Python

Lecture 03 - Introdução ao NumPy

Lecture 04 - Artificial Neural Networks

Lecture 05 - Artificial Neural Networks and Deep Learning

Lecture 06 - Convolutional Neural Networks

Lecture 07 - Other classifiers - K-NN, Bayes, SVM, ...

Lecture 08 - Object detection

Lecture 09 - Image segmentation

Creating a conda environment for the course


Without GPU

    $ conda create -n env-sin393-cpu-py39 python=3.9
    $ conda activate env-sin393-cpu-py39

    $ conda install pytorch torchvision torchaudio cpuonly -c pytorch
    
    $ pip install notebook
    $ pip install matplotlib
    $ pip install scikit-image
    $ pip install scikit-learn
    $ pip install pandas
    $ pip install seaborn
    $ pip install ipywidgets
    $ pip install ipympl
    $ pip install graphviz
    $ pip install opencv-python
    

With GPU

    $ conda create -n env-sin393-py39 python=3.9
    $ conda activate env-sin393-py39

    $ conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
    $ conda install chardet
    $ pip install notebook
    $ pip install matplotlib
    $ pip install scikit-image
    $ pip install scikit-learn
    $ pip install pandas
    $ pip install seaborn
    $ pip install ipywidgets
    $ pip install ipympl
    $ pip install graphviz
    $ pip install opencv-python
    $ pip install albumentations

You can easily save and load a conda environment:

  • Saving an environment:
    $ conda env export > env-sin393-cpu-py39.yml
  • Loading an environment:
    $ conda env create -f env-sin393-cpu-py39.yml 
  • I provide YML files for the CPU and GPU conda environment.
    env-sin393-cpu-py39.yml
    env-sin393-py39.yml

Bibliography


How to cite


  • How to cite this material:
    @misc{mari_comp_vis_2023,
        author = {João Fernando Mari},
        title = {Introduction to computer vision},
        year = {2023},
        publisher = {GitHub},
        journal = {GitHub repository},
        howpublished = {\url{https://github.com/joaofmari/SIN393_Introduction-to-computer-vision_2023}}
    }

João Fernando Mari - UFV-CRP - 2023 - joaofmari.github.io - joaof.mari@ufv.br

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published