We start with an input image, a small 3x3 grid with a bright center pixel. First, we apply the Sobel filter along the vertical axis to detect vertical edges. The output shows strong positive and negative values where pixel intensity changes vertically, and zeros where it does not. Next, we apply the Laplace filter, which calculates the second derivative, highlighting areas where intensity changes rapidly in all directions. This produces a strong negative value at the center pixel surrounded by positive values. The Sobel output shows edges as gradients, while Laplace highlights edges by curvature. Both outputs are arrays representing edge strength. This step-by-step process helps visualize how these filters detect edges differently.