gemini-logo-remover
Remove Gemini logos, watermarks, or AI-generated image markers using OpenCV inpainting. Use this skill when the user asks to remove Gemini logo, AI watermark, or any logo/watermark from images.
npx skills add majiayu000/claude-skill-registry --skill gemini-logo-remover-bear2u-my-skills --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Gemini Logo Remover Remove Gemini logos and watermarks from AI-generated images using inpainting. ## Setup ```bash pip install opencv-python numpy pillow --break-system-packages ``` ## Usage ### By Coordinates ```python import cv2 import numpy as np def remove_region(input_path, output_path, x1, y1, x2, y2, radius=5): """Remove rectangular region using inpainting.""" img = cv2.imread(input_path) h, w = img.shape[:2] mask = np.zeros((h, w), dtype=np.uint8) cv2.rectangle(mask, (x1, y1), (x2, y2), 255, -1) result = cv2.inpaint(img, mask, radius, cv2.INPAINT_TELEA) cv2.imwrite(output_path, result) # Example: remove region at coordinates remove_region('/mnt/user-data/uploads/img.png', '/mnt/user-data/outputs/clean.png', x1=700, y1=650, x2=800, y2=720) ``` ### By Corner ```python def remove_corner_logo(input_path, output_path, corner='bottom_right', w_ratio=0.1, h_ratio=0.1, padding=10): """Remove logo from corner. corner: top_left, top_right, bottom_left, bottom_right""" img = cv2.imread(input_path) h, w = img.shape[:2] lw, lh = int(w * w_ratio), int(h * h_ratio) coords = { 'bottom_right': (w - lw - padding, h - lh - padding, w - padding, h - padding), 'bottom_left': (padding, h - lh
- Setup
- Usage
- By Coordinates
- By Corner
- Find Coordinates
- Output
- Notes
pip install opencv-python numpy pillow --break-system-packages
What does the gemini-logo-remover skill do?
Remove Gemini logos, watermarks, or AI-generated image markers using OpenCV inpainting. Use this skill when the user asks to remove Gemini logo, AI watermark, or any logo/watermark from images.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill gemini-logo-remover-bear2u-my-skills --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
