diff --git a/backlog.md b/backlog.md index 6aef15d..b65eeb5 100644 --- a/backlog.md +++ b/backlog.md @@ -37,18 +37,19 @@ Scenery: - ✅ OUTPAINT feature/ crop/ pad call qwen - the pad/crop i think should allow also percentage values, since we looking in scaled images. - valid multi-input way to facilite the 2.5/3d orbit -- Refine a POSE, so we have the ref (source) image + pose prompt. use the tour GPU + api to refine the pose with user instruction. Then use the source image + updated prompt to generate a new image. -- introduce custom padding features - auto crop afterwards -- in car.html - studio view we have a action to pad the image we also have this feature in the "Generate" tab. -- add a checkbox (or similar) to instruct the image-model to outpaint the padded area. Also implement the outpainting functionality in edit_api.py, we can instruct qwen-image. We can have the same functionality in the "Generate" tab when no prompt is given but a padding is given. +- ✅ Refine a POSE, so we have the ref (source) image + pose prompt. use the tour GPU + api to refine the pose with user instruction. Then use the source image + updated prompt to generate a new image. +- introduce in the custom padding features + auto crop afterwards +- ✅ in car.html - studio view we have a action to pad the image we also have this feature in the "Generate" tab. +- ✅ add a checkbox (or similar) to instruct the image-model to outpaint the padded area. Also implement the outpainting functionality in edit_api.py, we can instruct qwen-image. We can have the same functionality in the "Generate" tab when no prompt is given but a padding is given. - ✅ we have a bug that when pressing the ui-action "duplicate" and "pad" the browser needs to refresh before we see the result. Other actions like generating from pose do not hae this bug, fix the bug and boy scout adjecnt actions if they are missing the required technical follow up. Fix the bug for the features. - ✅ In the "Generate" tab, the CUSTOM prompt is shown twice, above POSES and statically always in view in the right bottom. Remove the statically CUSTOM prompt from the UI. - The Generate button is always visible in the "Generate" tab, however we cannot jump to it via keyboard. Add a keyboard shortcut to jump to the Generate button "G" or simialler. -- remove the "set prompt" +- ✅ remove the "set prompt" - after pose generation, sometimes small black area's occur in the subject. ( presumably the _apply_transparency_black_bg addition) -- studio view - orbit tab - view sometimes seems accelerated, liek the tiems is set twice. And most of all a step in the turn seems in in the wrong direction. maybe its an image-ordering bug, but i think its because the image-model generated the step 240deg into the wrong direction +- ✅ studio view - orbit tab - view sometimes seems accelerated, liek the tiems is set twice. And most of all a step in the turn seems in in the wrong direction. maybe its an image-ordering bug, but i think its because the image-model generated the step 240deg into the wrong direction - Improve the UI/UX for the end-user experience. Where effort is low and impact is high. - +- add an action + key-bind to move a the current selected image in the filmstrip to the end of the filmstrip. ( so also do the actual reordering of the image ) +- - animate limbs along keyframe curves (true motion) - 3D-aware rotation / "circling around" with depth estimation - camera-orbit batch with consistent lighting across views @@ -59,7 +60,9 @@ Scenery: - after orbit generation, dont generate the mp4, but do show the orbit orbit-full-img-wrap and render the alpha images 1fps ourselves. - allow re-ordering of the images in the orbit generated frames - sometimes the UI renders two orbits in the same orbitFullViewer, must be a timer not being cleared in the ui -- +- The UI wants to car.html:2817 GET file:///mnt/zim/tour-comfy/output/_turntable/up_34e48ffb/turntable.jpg?t=1782562827857 net::ERR_FILE_NOT_FOUND, often want to show the wireframe - pose +- Jun 27 14:38:03 MIKE bash[3607206]: INFO: 127.0.0.1:53442 - "GET /output/_turntable/up_a1104f04/views/view_023_345deg.png HTTP/1.1" 304 Not Modified those files should be statically served from filesystem, not via server + ## refine - when refresh page, we lose track of current jobs running. diff --git a/tour-comfy/car.html b/tour-comfy/car.html index 14dc2c1..32386ff 100644 --- a/tour-comfy/car.html +++ b/tour-comfy/car.html @@ -126,6 +126,19 @@ opacity: 1; } + .image-card.highlight-prev { + border: 2px solid #f59e0b !important; + box-shadow: 0 0 15px rgba(245, 158, 11, 0.4); + } + + .pad-preview-overlay { + position: absolute; + background: rgba(245,158,11,0.25); + border: 1px dashed #f59e0b; + pointer-events: none; + z-index: 5; + } + .action-btn { background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); @@ -1902,6 +1915,7 @@