(name, description)
| 147 | |
| 148 | |
| 149 | def prompts(name, description): |
| 150 | def decorator(func): |
| 151 | func.name = name |
| 152 | func.description = description |
| 153 | return func |
| 154 | |
| 155 | return decorator |
| 156 | |
| 157 | |
| 158 | def blend_gt2pt(old_image, new_image, sigma=0.15, steps=100): |
nothing calls this directly
no outgoing calls
no test coverage detected