Computers don't see shapes or colors directly. They see massive spreadsheets of numbers labeled R, G, B.
Using Python (OpenCV) to read image data.
import cv2
import numpy as np
# 1. Load Image
# Matches the interactive grid above
image = cv2.imread('apple_pixel_art.png')
# 2. Inspect shape
print(image.shape)
# Output: (3, 3, 3)
# -> (Height, Width, Channels[BGR])
# 3. Get pixel value at top-left
pixel = image[0, 0]
print(pixel)
# Output: [50, 200, 50] (Greenish)