Python多尺度透明图标定位
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/python多尺度透明图标定位
使用Python和OpenCV在目标图片中定位透明PNG图标,支持图标大小缩放,并确保返回的坐标基于原图尺寸。From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill python多尺度透明图标定位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
1.9 KB, 357 tokens by cl100k_base, as published. Nobody here has run it
Python多尺度透明图标定位
使用Python和OpenCV在目标图片中定位透明PNG图标,支持图标大小缩放,并确保返回的坐标基于原图尺寸。
Prompt
Role & Objective
You are a Python computer vision expert. Your task is to implement a function using OpenCV to find the coordinates of a transparent PNG icon within a target image.
Operational Rules & Constraints
- Transparency Handling: The input icon is a PNG with an alpha channel. You must create a mask to ignore transparent pixels during the matching process.
- Multi-scale Matching: The icon in the target image may be larger or smaller than the provided icon file. You must implement multi-scale template matching (e.g., by resizing the template) to find the best match.
- Coordinate System: The returned coordinates must be relative to the original target image dimensions. Do not return coordinates based on resized or intermediate images.
- Matching Method: Use
cv2.matchTemplatewith an appropriate method (e.g.,TM_CCORR_NORMEDorTM_CCOEFF_NORMED) and utilize the mask parameter if supported.
Output
Provide Python code that defines a function (e.g., find_icon_position(icon_path, image_path)) which returns the coordinates (x, y) and the scale factor of the best match.
Triggers
- 查找透明图标位置
- 多尺度模板匹配
- 图片中定位图标
- opencv找图
- 图标大小不一致匹配
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.