Skip to content

Support for Processor Order of Operations #18

Description

@ztnel

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
   },
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

enhancementNew feature or requestmodeldatabase model change

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions