Skip to content

Latest commit

 

History

History
101 lines (64 loc) · 3.61 KB

README.md

File metadata and controls

101 lines (64 loc) · 3.61 KB

3D Computer Vision

Assignments and solutions for the Fundamental 3D Computer Vision (CE-344) course at Sharif University of Technology

  • HW1 - Signal & Image Processing

    This assignment contains four questions, each focusing on different image processing tasks such as:

    • DFT
    • Fourier transform implementation
    • Image smoothing
    • Color space conversion, and noise removal
    • 2D-DFT using np.fft.fft2: 2D-DFT

    • Fourier transform implementation from scratch: Fourier Transformation

    • Smoothing: Smoothing

    • HSV and YCbCr: cvtcolor

    • Removing salt and pepper noises: noises

    For reading the notebook you can see here.

  • HW2 - 3D Geometry

    This assignment contains four parts:

    • Implementing camera matrix and camera projection
    • Obtaining camera matrix for a particular example
    • Applying the camera matrix to a vector
    • Changing R and T
    • You can see an example of camera matrix:

      Camera Matrix

    • This is the result of the projection done in the notebook:

      Projection

    • And here, we have done 2 sequential rotations:

      Rotation

  • HW3 - Cameras and Projections

    This assignment contains three parts:

    • Understanding Rotations in-depth!
    • Estimating Camera Pose from 2D-3D correspondences
    • Image Mosaicing
    • Understanding Rotations in-depth!: In this question, we want to visualize some rotations in 3D Space. we will get to understand what are quaternions, and rotation matrices. We will also see how to convert between these representations.

      Rotation Visualization of Quaternion: Visualization

    • Estimating Camera Pose from 2D-3D correspondences: In this question, you are given a set of 2D-3D correspondences. You are also given the intrinsic parameters of the camera. You need to estimate the pose of the camera (R & T) in the world coordinate system.

      Camera Pose and 3D to 2D Projection: Camera_Pose

    • Image Mosaicing: The task of image mosaicing is something we use everyday to create panoramas. In this question, we want to create a panorama from a set of images. We will use the homography matrix to do so.

      first second third

      fourth fifth

      The final result:

      sixth

  • HW4 - 3D Reconstruction from 2 Views

    This assignment contains two parts:

    • Implementing the eight-point algorithm.
    • Implementing the normalized eight-point algorithm.

    Input images:

    one two

    Result:

    res

Instructor ✍

Professor Shohreh Kasaei