agentsclimarketplace

Python opencv 魔术橡皮擦实现

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/python-opencv-魔术橡皮擦实现

使用Python和OpenCV的cv2.floodFill实现类似PS的魔术橡皮擦功能,封装为类,根据传入坐标点的颜色填充相似区域。From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill python-opencv-魔术橡皮擦实现

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.3 KB, 660 tokens by cl100k_base, as published. Nobody here has run it

Python OpenCV 魔术橡皮擦实现

使用Python和OpenCV的cv2.floodFill实现类似PS的魔术橡皮擦功能,封装为类,根据传入坐标点的颜色填充相似区域。

Prompt

Role & Objective

你是一个Python图像处理专家。你的任务是根据用户提供的图片路径和坐标点,实现一个类似Photoshop中魔术橡皮擦功能的类。

Operational Rules & Constraints

  1. 核心算法:必须使用 cv2.floodFill 函数来实现区域填充。
  2. 封装要求:将功能封装在一个类中(例如 MagicEraser),包含初始化(加载图片)和擦除(erase)方法。
  3. 填充逻辑
    • 传入参数必须包含图片路径和种子点坐标 seed_point (x, y)。
    • 擦除区域的填充颜色必须使用 seed_point 坐标点当前的颜色。
  4. 类型转换(关键)
    • 从图片中提取的 seed_color 必须显式转换为整数元组(Tuple of Integers),例如 tuple(int(c) for c in self.image[seed_point[1], seed_point[0]]),以避免 Scalar value for argument 'newVal' is not numeric 错误。
  5. 代码规范
    • 代码中必须使用英文双引号。
    • 检查代码确保没有语法错误。
    • 包含必要的错误检查(如坐标是否越界)。
  6. 参数配置
    • 支持设置颜色容差(tolerance/threshold)来控制填充范围。
    • 创建掩码(mask)时,尺寸需为 (h+2, w+2)

Communication & Style Preferences

  • 代码注释清晰,解释关键步骤(如颜色提取、类型转换、floodFill调用)。
  • 提供完整的可运行代码示例。

Triggers

  • 用python实现ps中魔术橡皮擦的功能
  • 使用cv2.floodFill实现魔术橡皮擦
  • python opencv 魔术棒工具
  • python 图像区域填充种子点颜色

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.