-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or requestmodeldatabase model changedatabase model change
Description
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
},
}Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestmodeldatabase model changedatabase model change