원클릭으로
image-resizer
Use this skill to resize images via OpenCV.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use this skill to resize images via OpenCV.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
评估方法论 — 指导 agent 如何系统性评估代码库状态
已并入 implement skill,请勿新用
实现阶段主操作手册 — 指导 agent 完成改码与局部验证,并把提交留给独立 commit phase
规划规范 — 将评估结果收敛为结构化任务计划
流水线选择规范 — 根据任务和事实选择最合适的 pipeline
Evaluate another skill by inspecting its SKILL.md, referenced assets, and runnable helpers, then write a concise audit report plus a machine-readable score summary. Use when the caller asks to evaluate a skill, assess its readiness, or review quality/safety/testability. Do NOT use when the task is to create a new skill from scratch.
| name | image_resizer |
| description | Use this skill to resize images via OpenCV. |
This skill enables an agent to resize and rescale images using OpenCV.
The skill supports:
Interpolation determines how pixel values are computed during resizing. Common interpolation methods are:
INTER_NEAREST → fastest, lowest qualityINTER_LINEAR → balanced defaultINTER_CUBIC → smoother high-quality upscalingINTER_AREA → best for shrinking imagesINTER_LANCZOS4 → high-quality scaling preserving detailIf OpenCV isn't installed, install OpenCV via the following command:
pip install opencv-python -q
OpenCV provides the following function:
cv2.resize(src, dsize[, dst[, fx[, fy[, interpolation]]]])
(width, height)dsize=None)The function returns a resized NumPy image that can be displayed, saved, or further processed.
Use either explicit size (dsize) or scaling factors (fx, fy), not both simultaneously.