You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+25-16
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,15 @@
3
3
This repository contains the code for the following papers:
4
4
5
5
**Colorful Diffuse Intrinsic Image Decomposition in the Wild**, [Chris Careaga](https://ccareaga.github.io/) and [Yağız Aksoy](https://yaksoy.github.io), ACM Transactions on Graphics, 2024 \
We propose a method for generating high-resolution intrinsic image decompositions, for in-the-wild images. Our method consists of multiple stages. We first estimate a grayscale shading layer using our ordinal shading pipeline. We then estimate low-resolution chromaticity information to account for color illumination effects while maintaining global consistency. Using this initial colorful decomposition, we estimate a high-resolution, sparse albedo layer. We show that our decomposition allows us to train a diffuse shading network using only a single rendered indoor dataset.
14
+
We propose a method for generating high-resolution intrinsic image decompositions for in-the-wild images. Our method consists of multiple stages. We first estimate a grayscale shading layer using our ordinal shading pipeline. We then estimate low-resolution chromaticity information to account for colorful illumination effects while maintaining global consistency. Using this initial colorful decomposition, we estimate a high-resolution, sparse albedo layer. We show that our decomposition allows us to train a diffuse shading estimation network using only a single rendered indoor dataset.
15
15
16
16

17
17
@@ -38,11 +38,10 @@ This will allow you to import the repository as a Python package, and use our pi
38
38
## Inference
39
39
To run our pipeline on your own images you can use the decompose script:
40
40
```python
41
-
from chrislib.general importview, tile_imgs, view_scale, uninvert
41
+
from chrislib.general import uninvert
42
42
from chrislib.data_util import load_image
43
43
44
-
from intrinsic.pipeline import run_pipeline
45
-
from intrinsic.model_util import load_models
44
+
from intrinsic.pipeline import load_models, run_pipeline
This will run our pipeline and output the linear albedo and shading. You can run this in your browser as well! [](https://colab.research.google.com/github/compphoto/Intrinsic/blob/main/intrinsic_inference.ipynb)
62
+
This will run our pipeline and output the linear intrinsic components. You can run this in your browser as well! [](https://colab.research.google.com/github/compphoto/Intrinsic/blob/main/intrinsic_inference.ipynb)
69
63
70
64
## Citation
71
65
72
66
```
67
+
@ARTICLE{careagaColorful,
68
+
author={Chris Careaga and Ya\u{g}{\i}z Aksoy},
69
+
title={Colorful Diffuse Intrinsic Image Decomposition in the Wild},
70
+
journal={ACM Trans. Graph.},
71
+
year={2024},
72
+
volume = {43},
73
+
number = {6},
74
+
articleno = {178},
75
+
numpages = {12},
76
+
}
77
+
73
78
@ARTICLE{careagaIntrinsic,
74
-
author={Chris Careaga and Ya\u{g}{\i}z Aksoy},
75
-
title={Intrinsic Image Decomposition via Ordinal Shading},
76
-
journal={ACM Trans. Graph.},
77
-
year={2023},
79
+
author={Chris Careaga and Ya\u{g}{\i}z Aksoy},
80
+
title={Intrinsic Image Decomposition via Ordinal Shading},
0 commit comments