Fading Coder

One Final Commit for the Last Sprint

Computer Vision Fundamentals

Homework 0: Basic Image Manipulation This homework focuses on fundamental image processing operations such as resizing, rotating, and basic transformations. Image Resizing Resizing an image involves changing its dimensions. One common method is nearest neighbor interpolation, which simply copies the...

Understanding 1D, 2D, and 3D Convolution Layers

Understanding dilation in convolution operations: https://blog.csdn.net/weixin_42363544/article/details/123920699 Dilated convolution, also known as hole convolution. In PyTorch, a dilation value of 1 corresponds to a standard convolution without dilation. When dilation is 1, each element in the ker...