rcd27
08/13/2021, 9:34 AMOpenCV
. I believe that I should implement something reactive + FP: imagine there is a bar where we can "just add new processing operation". This will result in a "list of operations", applied: rawImage -> op1-> op2 -> op3 -> processedImage
. where all opX
take result of the previous one. That would be great to memoize the result of operations, so that if I change some characteristics in op3
for example (each operation has its own arguments), that wouldn't lead to recomputation of op1
and op2
. Which way should I dig in, how do you think? I think this is ideal for FP, what do you say?rcd27
08/13/2021, 9:39 AMraulraja
08/13/2021, 10:44 AMraulraja
08/13/2021, 10:45 AMrcd27
08/14/2021, 5:47 AM