Skip to content

Master #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
77 changes: 77 additions & 0 deletions .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Deploy Hugo site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

# Default to bash
defaults:
run:
shell: bash

jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.110.0
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass Embedded
run: sudo snap install dart-sass-embedded
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--gc \
--minify \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./public

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
Binary file added chocolatey.1.3.0.nupkg
Binary file not shown.
Binary file added content/.DS_Store
Binary file not shown.
Binary file added content/docs/.DS_Store
Binary file not shown.
10 changes: 10 additions & 0 deletions content/docs/Visual Illusions/Coloring/Color blindness.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---
Color blindness

Implement a color mapping application that helps people who are color blind see the colors around them.

Solution

{{< p5-iframe sketch="/showcase/sketches/quick_easycam.js" lib1="https://cdn.jsdelivr.net/gh/freshfork/p5.EasyCam@1.2.1/p5.easycam.min.js" width="525" height="525" >}}
9 changes: 9 additions & 0 deletions content/docs/Visual Illusions/Coloring/Color models.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
weight: 2
---
Color models

Research other color models such as HSL, HSB, XYZ.

Solution

8 changes: 8 additions & 0 deletions content/docs/Visual Illusions/Coloring/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
bookCollapseSection: true
weight: 2
---



{{<section>}}
10 changes: 10 additions & 0 deletions content/docs/Visual Illusions/Depth Perception/Depth Perception.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---
Depth Perception

Take advantage of monocular cues to implement a 2D sketch to trick the eye into perceiving a 3D scene.

Solution

{{< p5-iframe sketch="/showcase/sketches/quick_easycam.js" lib1="https://cdn.jsdelivr.net/gh/freshfork/p5.EasyCam@1.2.1/p5.easycam.min.js" width="525" height="525" >}}
8 changes: 8 additions & 0 deletions content/docs/Visual Illusions/Depth Perception/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
bookCollapseSection: true
weight: 7
---



{{<section>}}
8 changes: 8 additions & 0 deletions content/docs/Visual Illusions/Excercise 1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
weight: 1
---
Excercise 1

Study, implement and discuss possible applications of some known visual phenomena and optical illusions.

Solution
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---
Terrain with Perlin noise

Develop a terrain visualization application. Check out the 3D terrain generation with Perlin noise coding train tutorial.

Solution

{{< p5-iframe sketch="/showcase/sketches/quick_easycam.js" lib1="https://cdn.jsdelivr.net/gh/freshfork/p5.EasyCam@1.2.1/p5.easycam.min.js" width="525" height="525" >}}
8 changes: 8 additions & 0 deletions content/docs/Visual Illusions/Mach Bands/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
bookCollapseSection: true
weight: 3
---



{{<section>}}
14 changes: 14 additions & 0 deletions content/docs/Visual Illusions/Masking/Convolution masks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
weight: 3
---
Convolution masks

Implement in software an image processing web app supporting different image kernels and supporting:

-Image histogram visualization.

-Different lightness (coloring brightness) tools.

Solution

{{< p5-iframe sketch="/showcase/sketches/quick_easycam.js" lib1="https://cdn.jsdelivr.net/gh/freshfork/p5.EasyCam@1.2.1/p5.easycam.min.js" width="525" height="525" >}}
10 changes: 10 additions & 0 deletions content/docs/Visual Illusions/Masking/Image quantization.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---
Image quantization

Research & implement some dither visual apps.

Solution

{{< p5-iframe sketch="/showcase/sketches/quick_easycam.js" lib1="https://cdn.jsdelivr.net/gh/freshfork/p5.EasyCam@1.2.1/p5.easycam.min.js" width="525" height="525" >}}
10 changes: 10 additions & 0 deletions content/docs/Visual Illusions/Masking/Visual masking.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 1
---
Visual masking

Implement a kinegram and some moiré patterns which are close related visual phenomena to masking.

Solution

{{< p5-iframe sketch="/showcase/sketches/quick_easycam.js" lib1="https://cdn.jsdelivr.net/gh/freshfork/p5.EasyCam@1.2.1/p5.easycam.min.js" width="525" height="525" >}}
8 changes: 8 additions & 0 deletions content/docs/Visual Illusions/Masking/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
bookCollapseSection: true
weight: 4
---



{{<section>}}
10 changes: 10 additions & 0 deletions content/docs/Visual Illusions/Spatial Coherence/Pixelator demo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---
Pixelator demo

Implement a pixelator video application and perform a benchmark of the results (color avg vs spatial coherence). How would you assess the visual quality of the results?

Solution

{{< p5-iframe sketch="/showcase/sketches/quick_easycam.js" lib1="https://cdn.jsdelivr.net/gh/freshfork/p5.EasyCam@1.2.1/p5.easycam.min.js" width="525" height="525" >}}
8 changes: 8 additions & 0 deletions content/docs/Visual Illusions/Spatial Coherence/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
bookCollapseSection: true
weight: 5
---



{{<section>}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---
Temporal Coherence

Implement an animation with keyframes using the nub library for Processing (Java).

Solution

{{< p5-iframe sketch="/showcase/sketches/quick_easycam.js" lib1="https://cdn.jsdelivr.net/gh/freshfork/p5.EasyCam@1.2.1/p5.easycam.min.js" width="525" height="525" >}}
8 changes: 8 additions & 0 deletions content/docs/Visual Illusions/Temporal Coherence/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
bookCollapseSection: true
weight: 6
---



{{<section>}}
6 changes: 6 additions & 0 deletions content/docs/Visual Illusions/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
bookFlatSection: true
---

## Visual Illusions
{{<section>}}
Binary file added content/docs/members/.DS_Store
Binary file not shown.
10 changes: 10 additions & 0 deletions content/docs/members/Adrian.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---


#Adrian Felipe Castillo Gonzales

## Info

Estudiante de octavo semestre, interesado en inteligencia artificial, con experiencia en desarrollo web utilizando frameworks de PHP.
10 changes: 10 additions & 0 deletions content/docs/members/Jaime.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---


#Jaime Andres Macias Sanchez

## Info

Estudiante de ingenieria de sistemas en la universidad nacional.
10 changes: 10 additions & 0 deletions content/docs/members/Rodrigo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
weight: 2
---


#Rodrigo Sierra Agredo

## Info

Estudiante de ingenieria de sistemas en la universidad nacional.
7 changes: 7 additions & 0 deletions content/docs/members/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
bookCollapseSection: true
---

## Integrantes

{{<section>}}
3 changes: 0 additions & 3 deletions content/docs/shortcodes/_index.md

This file was deleted.

13 changes: 0 additions & 13 deletions content/docs/shortcodes/buttons.md

This file was deleted.

45 changes: 0 additions & 45 deletions content/docs/shortcodes/columns.md

This file was deleted.

22 changes: 0 additions & 22 deletions content/docs/shortcodes/details.md

This file was deleted.

Loading