Spaces:
Sleeping
Sleeping
File size: 13,655 Bytes
c5d647f c7e9899 c5d647f c7e9899 c5d647f aad4f32 c7e9899 4405143 c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 aad4f32 c7e9899 aad4f32 c5d647f c7e9899 aad4f32 c7e9899 aad4f32 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f c7e9899 c5d647f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | """
Inspired by https://www.loginradius.com/blog/engineering/guest-post/opencv-web-app-with-streamlit/
and https://medium.com/analytics-vidhya/finding-waldo-feature-matching-for-opencv-9bded7f5ab10
"""
import numpy as np
import cv2 as cv
import streamlit as st
from huggingface_hub import hf_hub_download
from streamlit_image_coordinates import streamlit_image_coordinates
@st.cache_data
def compute_correlation(scene: np.array, template: np.array):
"""
COMPUTE_CORRELATION computes the correlation between the pixels in scene and template
when the center of template is placed at location (x, y) on the scene. (x, y) is assumed
to be within bounds of the scene - this function doesn't check for out of bounds.
"""
gray_scene = cv.cvtColor(scene, cv.COLOR_BGR2GRAY)
cv.normalize(gray_scene, gray_scene, 0, 255, cv.NORM_MINMAX)
gray_template = cv.cvtColor(template, cv.COLOR_BGR2GRAY)
cv.normalize(gray_template, gray_template, 0, 255, cv.NORM_MINMAX)
res = cv.matchTemplate(gray_scene, gray_template, cv.TM_CCOEFF_NORMED)
return res
def compute_patch_correlation(scene_patch: np.array, template: np.array):
"""
Compute correlation score between a scene patch and template.
Returns a score between 0 and 1, where 1 is a perfect match.
"""
# Ensure patches are the same size
if scene_patch.shape != template.shape:
return 0.0
gray_patch = cv.cvtColor(scene_patch, cv.COLOR_BGR2GRAY)
cv.normalize(gray_patch, gray_patch, 0, 255, cv.NORM_MINMAX)
gray_template = cv.cvtColor(template, cv.COLOR_BGR2GRAY)
cv.normalize(gray_template, gray_template, 0, 255, cv.NORM_MINMAX)
# Use normalized cross-correlation
result = cv.matchTemplate(gray_patch, gray_template, cv.TM_CCOEFF_NORMED)
return float(result[0, 0]) if result.size > 0 else 0.0
def extract_patch(scene: np.array, x: int, y: int, template_shape):
"""
Extract a patch from the scene centered at (x, y) with the same size as the template.
"""
h, w = template_shape[0], template_shape[1]
# Calculate patch boundaries
y_start = max(0, y - h // 2)
y_end = min(scene.shape[0], y_start + h)
x_start = max(0, x - w // 2)
x_end = min(scene.shape[1], x_start + w)
# Adjust if we hit boundaries
if y_end - y_start < h:
y_start = max(0, y_end - h)
if x_end - x_start < w:
x_start = max(0, x_end - w)
patch = scene[y_start:y_end, x_start:x_end]
# Pad if necessary (edge cases)
if patch.shape[0] < h or patch.shape[1] < w:
patch = cv.copyMakeBorder(
patch,
0,
h - patch.shape[0],
0,
w - patch.shape[1],
cv.BORDER_CONSTANT,
value=[0, 0, 0],
)
return patch, (x_start, y_start, x_end, y_end)
@st.cache_resource
def load_images():
"""Load and cache the template and scene images."""
# Load template
template_path = hf_hub_download(
repo_id="amithjkamath/exampleimages",
filename="waldo-template.jpeg",
repo_type="dataset",
)
template_image = cv.imread(template_path)
template_image = cv.cvtColor(template_image, cv.COLOR_BGR2RGB)
# Load scene
scene_path = hf_hub_download(
repo_id="amithjkamath/exampleimages",
filename="waldo-scene.jpeg",
repo_type="dataset",
)
scene_image = cv.imread(scene_path)
scene_image = cv.cvtColor(scene_image, cv.COLOR_BGR2RGB)
return template_image, scene_image
def main_loop():
"""
MAIN_LOOP is the main loop (duh) for this streamlit App.
"""
st.set_page_config(layout="wide")
st.title("π Interactive Template Matching Demo")
st.markdown(
"""
Welcome! This app teaches you how **template matching** works - a fundamental computer vision technique.
You'll learn by doing: click and drag the template around to see how computers "find" objects in images!
"""
)
# Load images (cached)
template_image, scene_image = load_images()
# Introduction
col1, col2 = st.columns([1, 3])
with col1:
st.markdown("### Meet Waldo π")
st.image(template_image, caption="Our template to find")
st.markdown(
"**Template size:** {}Γ{}".format(
template_image.shape[1], template_image.shape[0]
)
)
with col2:
st.markdown("### The Challenge")
st.markdown(
"""
Can you spot Waldo in this busy scene? Most people take 20+ seconds!
But computers can do it differently. Instead of using intuition, they use **template matching**:
- Slide the template over every possible position
- At each position, compute a **similarity score**
- The highest score reveals where Waldo is!
"""
)
# Show the scene
st.markdown("---")
st.markdown("### π― Try It Yourself: Interactive Template Matching")
st.markdown(
"""
**Instructions:** Click anywhere on the image below to place the template there.
Watch how the correlation score changes! Can you find where Waldo actually is?
"""
)
# Initialize session state for template position
if "template_x" not in st.session_state:
st.session_state.template_x = scene_image.shape[1] // 4
st.session_state.template_y = scene_image.shape[0] // 4
if "last_computed_x" not in st.session_state:
st.session_state.last_computed_x = st.session_state.template_x
st.session_state.last_computed_y = st.session_state.template_y
if "computed_score" not in st.session_state:
st.session_state.computed_score = None
if "computed_patch" not in st.session_state:
st.session_state.computed_patch = None
# Create interactive image
col_left, col_right = st.columns([2, 1])
with col_left:
st.markdown("**Click on the image to move the template:**")
# Create overlay image with template
display_image = scene_image.copy()
t_h, t_w = template_image.shape[0], template_image.shape[1]
# Calculate template position (top-left corner)
x = st.session_state.template_x
y = st.session_state.template_y
x_start = max(0, x - t_w // 2)
y_start = max(0, y - t_h // 2)
x_end = min(scene_image.shape[1], x_start + t_w)
y_end = min(scene_image.shape[0], y_start + t_h)
# Draw rectangle around template position
cv.rectangle(
display_image, (x_start, y_start), (x_end, y_end), (255, 255, 0), 3
)
# Overlay semi-transparent template
overlay = display_image.copy()
if y_end - y_start == t_h and x_end - x_start == t_w:
overlay[y_start:y_end, x_start:x_end] = cv.addWeighted(
overlay[y_start:y_end, x_start:x_end], 0.5, template_image, 0.5, 0
)
display_image = cv.addWeighted(display_image, 0.7, overlay, 0.3, 0)
# Get click coordinates
value = streamlit_image_coordinates(display_image, key="scene_image")
# Update position only if clicked (value changed)
if value is not None:
new_x = value["x"]
new_y = value["y"]
# Only update if position actually changed
if (
new_x != st.session_state.template_x
or new_y != st.session_state.template_y
):
st.session_state.template_x = new_x
st.session_state.template_y = new_y
with col_right:
# Show current position
st.markdown("### π Current Position")
st.markdown(f"**X:** {st.session_state.template_x}px")
st.markdown(f"**Y:** {st.session_state.template_y}px")
# Check if position has changed since last computation
position_changed = (
st.session_state.template_x != st.session_state.last_computed_x
or st.session_state.template_y != st.session_state.last_computed_y
)
# Button to compute match
if position_changed:
st.info("π Position changed! Click below to compute match score.")
compute_button = st.button(
"π Compute Match Score", type="primary", use_container_width=True
) # Will be updated to width='stretch' in future
# Compute correlation if button clicked or initial load
if compute_button or st.session_state.computed_score is None:
with st.spinner("Computing correlation..."):
# Extract patch and compute correlation
patch, _ = extract_patch(
scene_image,
st.session_state.template_x,
st.session_state.template_y,
template_image.shape[:2],
)
score = compute_patch_correlation(patch, template_image)
# Store computed values
st.session_state.computed_score = score
st.session_state.computed_patch = patch
st.session_state.last_computed_x = st.session_state.template_x
st.session_state.last_computed_y = st.session_state.template_y
# Display match score with color coding
st.markdown("### π Match Score")
if st.session_state.computed_score is not None:
score = st.session_state.computed_score
# Determine match quality
if score >= 0.8:
quality = "π Excellent Match!"
color = "green"
explanation = "This is very likely the correct location!"
elif score >= 0.6:
quality = "β
Good Match"
color = "blue"
explanation = "Strong similarity, but maybe not perfect."
elif score >= 0.4:
quality = "β οΈ Moderate Match"
color = "orange"
explanation = "Some similarity, but probably not the right spot."
else:
quality = "β Poor Match"
color = "red"
explanation = "Very low similarity - keep searching!"
# Display score with highlighting
st.markdown(
f"""
<div style="background-color: {color}; padding: 20px; border-radius: 10px; text-align: center;">
<h2 style="color: white; margin: 0;">{score:.3f}</h2>
<p style="color: white; margin: 5px 0 0 0; font-size: 18px;"><b>{quality}</b></p>
</div>
""",
unsafe_allow_html=True,
)
st.markdown(f"*{explanation}*")
else:
st.warning("Click 'Compute Match Score' to analyze this position.")
# Show zoomed comparison
st.markdown("### π¬ Close-up Comparison")
if st.session_state.computed_patch is not None:
st.markdown("**Template vs Current Patch:**")
# Create side-by-side comparison
comparison = np.hstack([template_image, st.session_state.computed_patch])
st.image(
comparison,
caption="Left: Template | Right: Current patch",
width="stretch",
)
else:
st.info("Compute match score to see the comparison.")
# Educational section: Show the full correlation heatmap
st.markdown("---")
st.markdown("### π§ How Does the Computer Find Waldo?")
with st.expander("Click here to see the full solution!", expanded=False):
st.markdown(
"""
The computer doesn't guess - it's systematic! It computes the correlation score at **every possible position**.
Here's the resulting **correlation heatmap** where brighter areas indicate better matches:
"""
)
corr = compute_correlation(scene_image, template_image)
norm_corr = (corr - corr.min()) / (corr.max() - corr.min())
col1, col2 = st.columns(2)
with col1:
st.image(
norm_corr,
caption="Correlation Heatmap (bright = high match)",
width="stretch",
)
st.markdown("Notice the bright spot? That's where Waldo is! π―")
with col2:
# Show result with bounding boxes
result_image = scene_image.copy()
threshold = 0.6
loc = np.where(corr >= threshold)
template_shape = template_image.shape
for pt in zip(*loc[::-1]):
cv.rectangle(
result_image,
pt,
(pt[0] + template_shape[1], pt[1] + template_shape[0]),
(0, 255, 0),
3,
)
st.image(
result_image,
caption="Detected locations (green boxes)",
width="stretch",
)
st.markdown("Green boxes show all locations with correlation > 0.6")
st.markdown(
"""
**Key Insight:** Template matching is a brute-force approach that checks every possible location.
While simple, it's very effective for finding exact or near-exact matches!
"""
)
# Footer
st.markdown("---")
st.markdown(
"""
<small>
π¨ Image copyrights for "Where's Waldo?" are fully attributed to original owners.
Used here purely for educational purposes.
</small>
""",
unsafe_allow_html=True,
)
if __name__ == "__main__":
main_loop()
|