Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Processor Order of Operations #18

Open
ztnel opened this issue Aug 31, 2021 · 0 comments
Open

Support for Processor Order of Operations #18

ztnel opened this issue Aug 31, 2021 · 0 comments
Assignees
Labels
enhancement New feature or request model database model change

Comments

@ztnel
Copy link
Member

ztnel commented Aug 31, 2021

Description

Currently, the processor has a fixed non-configurable order of operations when it comes to applying image processing techniques. This needs to be supported as the order greatly affects the resulting image. All the embedded documents could have an index field to log the order of ops:

{
   "gaussian_blur": {
      "index": 1,
      "kernel_width": 3,
      "kernel_height": 3
   },
   "dialation": {
      "index": 2,
      "kernel_width": 3,
      "kernel_height": 3,
      "iterations": 20
   }, 
   "erosion": {
      "index": 0,
      "kernel_width": 3,
      "kernel_height": 3,
      "iterations": 20
   },
}
@ztnel ztnel added enhancement New feature or request model database model change labels Aug 31, 2021
@ztnel ztnel added this to To do in Image Modifier Resources via automation Aug 31, 2021
@ztnel ztnel self-assigned this Aug 31, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request model database model change
Development

No branches or pull requests

1 participant