Chris Tralie
Chris Tralie
  • 394
  • 127 500
Computer Graphics Module 7: Homogeneous Coordinates for Translations
This video explains why it's impossible to represent a 2D translation with a 2x2 matrix, but how we can do it with a very special 3x3 matrix using "homogeneous coordinates"
Course web page here:
ursinusgraphics.github.io/F2024/
Interactive matrix widget here:
ursinusgraphics.github.io/F2024/Materials/ggslac/viewers/MatrixAnim.html
Exercise here:
ursinusgraphics.github.io/Modules/Module7/Exercise0
มุมมอง: 108

วีดีโอ

Computer Graphics: Derivation of Ray Reflections (with code!)
มุมมอง 5812 ชั่วโมงที่ผ่านมา
Course web page here: ursinusgraphics.github.io/F2024/ Notes/starter code/solution here: ursinusgraphics.github.io/F2024/ClassExercises/Week3_Reflections/index.html
Data Structures: Binary Search Infinite Loop Pitfalls And How To Fix Them
มุมมอง 7514 วันที่ผ่านมา
Data Structures And Algorithms Course Page Here: ursinusdatastructures.github.io/F2024/ Binary Search Interactive Notes Here: ursinusdatastructures.github.io/F2024/ClassExercises/Week1_BinarySearch/ Video notes here: ursinusdatastructures.github.io/Modules/BinarySearch/Video1 Exercise here: ursinusdatastructures.github.io/Modules/BinarySearch/Exercise1 Google research article on how only 10% of...
Javascript Accidental Global Variables Bug
มุมมอง 3221 วันที่ผ่านมา
Javascript Accidental Global Variables Bug
Visualizing Lucas's Hamiltonian Paths in The Flip Graph, aka All Binary Trees One Rotation At A Time
มุมมอง 713 หลายเดือนก่อน
We provide an explanation of a Hamiltonian path through the flip graph through all possible traingulations of convex polygons, which is equivalent to all binary trees exactly once, one tree rotation at a time. This is based on a contructive proof from Joan Lucas in 1987 We summarize this proof in a writeup here and provide 16 lines of pure python code to do this: drops.dagstuhl.de/storage/00lip...
Hiding Data in Plain Sight: Least Significant Bit Image Steganography in Python
มุมมอง 3.3K5 หลายเดือนก่อน
Code link here: ctraliedotcom.github.io/basicimageprocessing/LSBImgSteg.html Related assignment here: ursinus-cs174-s2023.github.io/CoursePage/Assignments/HW2_Steganography/part2.html
CS 477 AI: Hacking Resnet with An Adversarial Attack Using Gradient Descent
มุมมอง 1679 หลายเดือนก่อน
We can trick ResNet into thinking an image is something completely different by adding an imperceptible amount of noise. I show how to do this from scratch in code using pytorch Code/notes here: ursinus-cs477-f2023.github.io/Modules/FinalModule/TrickingResnet
#CookLevin Theorem Made Practical! #Boolean SAT Reduction for #Hamiltonian Cycle in #Python
มุมมอง 1299 หลายเดือนก่อน
Code here: github.com/ursinus-cs373-f2023/CookLevinForReal Notes here: ursinus-cs373-f2023.github.io/CoursePage/ClassExercises/Week14_CookLevin Course web page here: ursinus-cs373-f2023.github.io/CoursePage/
CS 477 AI HW7 Fall 2023: DCGan Cats Training Loop: Deeper Network
มุมมอง 259 หลายเดือนก่อน
Assignment description here: ursinus-cs477-f2023.github.io/CoursePage/Assignments/HW7_GANUNet/part1.html Energy usage estimated using CodeCarbon codecarbon.io/
CS 477 AI: Variational Autoencoders And ELBO: A Rigorous Derivation
มุมมอง 1339 หลายเดือนก่อน
Notes here: ursinus-cs477-f2023.github.io/Modules/VAEGAN/Video5
CS 477: AI: Entropy, Cross-Entropy, And Kullback-Liebler Divergence
มุมมอง 999 หลายเดือนก่อน
Code/notes here: ursinus-cs477-f2023.github.io/Modules/VAEGAN/Video4 Huffman trees lab here: ursinus-cs174-s2023.github.io/CoursePage/Labs/Lab7_HuffmanTrees/
CS 477 AI: This Cat Doesn't Exist V1: Variational Autoencoders (With Bugfix!)
มุมมอง 1319 หลายเดือนก่อน
Link to notes/code: ursinus-cs477-f2023.github.io/Modules/VAEGAN/Video3 Link to kaggle dataset: www.kaggle.com/datasets/spandan2/cats-faces-64x64-for-generative-models/
CS 477: AI: Variational Autoencoders Concept / Implementation
มุมมอง 1459 หลายเดือนก่อน
Notes/code here: ursinus-cs477-f2023.github.io/Modules/VAEGAN/Video2
CS 477 AI: Convolutional Autoencoders: The Gory Details in PyTorch
มุมมอง 4219 หลายเดือนก่อน
Notes here: ursinus-cs477-f2023.github.io/Modules/VAEGAN/Video1 Related assignment here: ursinus-cs477-f2023.github.io/CoursePage/Assignments/HW6_BYOMLP/
CS 373: P vs NP, and Why Is It Called "NP"??
มุมมอง 589 หลายเดือนก่อน
CS 373: P vs NP, and Why Is It Called "NP"??
CS 373: The Class NP (Certificates and Polynomial Time Verifiers)
มุมมอง 1179 หลายเดือนก่อน
CS 373: The Class NP (Certificates and Polynomial Time Verifiers)
CS 373: The Class P / Complexity Analysis of Reduction from Multitape To Single Tape Turing Machines
มุมมอง 379 หลายเดือนก่อน
CS 373: The Class P / Complexity Analysis of Reduction from Multitape To Single Tape Turing Machines
CS 373: A Formal Definition of Big-O
มุมมอง 529 หลายเดือนก่อน
CS 373: A Formal Definition of Big-O
CS 373: Rice's Theorem for Undecidable Languages over Turing Machines
มุมมอง 899 หลายเดือนก่อน
CS 373: Rice's Theorem for Undecidable Languages over Turing Machines
CS 373: Undecidable Problems (Halt, ETM, RegTM, TwoWriteTM) And Reductions from ATM
มุมมอง 919 หลายเดือนก่อน
CS 373: Undecidable Problems (Halt, ETM, RegTM, TwoWriteTM) And Reductions from ATM
CS 271: Traveling Salesperson Art / 2-Opt "Crossing Canceling" Heuristic for Metric TSP Problems
มุมมอง 1249 หลายเดือนก่อน
CS 271: Traveling Salesperson Art / 2-Opt "Crossing Canceling" Heuristic for Metric TSP Problems
CS 271: Delaunay Triangulations in Scipy
มุมมอง 8929 หลายเดือนก่อน
CS 271: Delaunay Triangulations in Scipy
CS 271: Traveling Salesperson And 2-Approximation with DFS on MST
มุมมอง 1479 หลายเดือนก่อน
CS 271: Traveling Salesperson And 2-Approximation with DFS on MST
CS 271: Fast Plant Cell Image Segmentation Using Depth-First Search
มุมมอง 4079 หลายเดือนก่อน
CS 271: Fast Plant Cell Image Segmentation Using Depth-First Search
CS 271: Breadth-First Search And Depth-First Search
มุมมอง 769 หลายเดือนก่อน
CS 271: Breadth-First Search And Depth-First Search
Data Structures: The Magical Adjacency Matrix Representation for Graphs
มุมมอง 8310 หลายเดือนก่อน
Data Structures: The Magical Adjacency Matrix Representation for Graphs
Data Structures: Adjacency Graph Data Structure
มุมมอง 9110 หลายเดือนก่อน
Data Structures: Adjacency Graph Data Structure
Data Structures: Undirected Graphs, EdgeSet Graph Data Structure
มุมมอง 9510 หลายเดือนก่อน
Data Structures: Undirected Graphs, EdgeSet Graph Data Structure
CS 477 AI: Derivation of Matrix Derivatives for Backpropagation in General Multilayer Perceptrons
มุมมอง 9610 หลายเดือนก่อน
CS 477 AI: Derivation of Matrix Derivatives for Backpropagation in General Multilayer Perceptrons
CS 477 AI: Backpropagation on 1D Multilayer Perceptrons
มุมมอง 11610 หลายเดือนก่อน
CS 477 AI: Backpropagation on 1D Multilayer Perceptrons