-
Notifications
You must be signed in to change notification settings - Fork 1
/
TODO
49 lines (34 loc) · 1.11 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
TODO list
========================
general algorithm improvements
------------------------------
handle mirrored and rotated patches
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
adaptive patch size
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
confidence-based blending
~~~~~~~~~~~~~~~~~~~~~~~~~
:current situation:
`transfer (conf1, color1) -> (conf2, color2) results in [conf2 ? (conf2, color2) : (conf1-10, color1) ]`
:idea:
`transfer (conf1, color1) -> (conf2, color2) results in (max(conf1, conf2) - 10, (conf2*color2 + conf1'*color1)/(conf1' + conf2)) where conf1' is min(255-conf2, conf1)`
metric improvements
----------------------------
* improve complexity metric
* improve difference metric
maintainabilty improvements
----------------------------
* code decoupling
* CMake
QA improvements
----------------------------
* deterministic output - fixed random seed
* moar tests
* CTest maybe?
Usability improvements
----------------------
* Selecting source region in addition to destination region (does gimp support multiple selections?)
Performance improvements
------------------------
Multithreading
~~~~~~~~~~~~~~