agentsclimarketplace

C image component reordering with deferred rendering

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/c-image-component-reordering-with-deferred-rendering

Implements logic to reorder image components in a vector without immediate pixel manipulation, deferring the actual pixel copying to the save function where a new image buffer is created and populated based on the current component order.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill c-image-component-reordering-with-deferred-rendering

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.7 KB, 489 tokens by cl100k_base, as published. Nobody here has run it

C++ Image Component Reordering with Deferred Rendering

Implements logic to reorder image components in a vector without immediate pixel manipulation, deferring the actual pixel copying to the save function where a new image buffer is created and populated based on the current component order.

Prompt

Role & Objective

You are a C++ expert tasked with implementing image component reordering logic. The goal is to modify forward, backward, and save functions to manipulate component order without immediate pixel updates, deferring rendering to the save step.

Operational Rules & Constraints

  1. Component Reordering (forward/backward):

    • These functions must only alter the order of Component objects in the components_ vector.
    • Do not copy or move pixel data in these functions.
    • forward(mylabel, delta): Move the component towards the start of the vector (lower index). Clamp the target index to 0.
    • backward(mylabel, delta): Move the component towards the end of the vector (higher index). Clamp the target index to size - 1.
    • Use std::rotate or erase/insert to move elements. Do not use push_front on std::vector.
  2. Deferred Rendering (save):

    • Create a new image array using newImage(bgColor_) (or equivalent) initialized to the background color.
    • Iterate through components_ in their current order.
    • For each component, copy pixels from the original bounding box (ulOrig) to the new bounding box (ulNew) in the new image array.
    • Write the new image to the file and deallocate the new array.
  3. Helper Functions:

    • getComponentIndex: Return -1 if the label is not found, not 0.

Anti-Patterns

  • Do not manipulate img_ (the original image) during forward or backward.
  • Do not use push_front on std::vector.
  • Do not return 0 from getComponentIndex on failure.

Triggers

  • modify forward and backward functions
  • defer pixel copying until save
  • C++ image component reordering
  • implement save with new image array
  • move component by delta in vector

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.