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: content/documentation/PinePhone_Pro/Camera.md
+31-7Lines changed: 31 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,32 +15,33 @@ The PinePhone Pro has two cameras, Sony IMX258 with 13MP as rear camera and Omni
15
15
16
16
As mentioned in [Software State](/documentation/PinePhone_Pro/Software/Software_state/), the cameras are work-in-progress, including a required DTS fix, userspace still needs to do some catching up and there is a green image tint. This article explains how to fix camera sofware on your PinePhone Pro. The work is on progress and will be available soon for different distributions. Make sure your PinePhone Pro is connected to the web to download needed software.
@@ -52,7 +53,6 @@ You will be prompted to some options
52
53
* Configure this as new remote 'flathub' [Y/n]: y
53
54
* Required runtime for me.gapixels.Megapixels/aarch64/master (runtime/org.gnome.Platform/aarch64/47) found in remote flathub. Do you want to install it? [Y/n]: y
54
55
55
-
56
56
To launch camera app you can both click on Megapixels icon on your desktop or enter into terminal following command
57
57
58
58
```console
@@ -68,4 +68,28 @@ $ flatpak uninstall --unused
68
68
$ flatpak repair
69
69
```
70
70
71
+
## Green Tint Issue
72
+
73
+
To fix the green tint issue during post processing of your pictures, add "-a" and "-f" to dcraw line (about #82) into postprocess.sh file
74
+
75
+
First look for postprocess.sh file:
76
+
77
+
```console
78
+
$ cd ../..
79
+
$ sudo find / -type f -name postprocess.sh
80
+
```
81
+
82
+
Goto the postprocess.sh directory you found using the above command. Here the example */var/lib/flatpak/app/me.gapixels.Megapixels/aarch64/master/[...]/files/share/megapixels/postprocess.sh* is used:
83
+
84
+
```console
85
+
$ cd /var/lib/flatpak/app/me.gapixels.Megapixels/aarch64/master/[...]/files/share/megapixels
86
+
```
87
+
88
+
Backup original file and add "-a" and "-f" to dcraw line, using replace command:
0 commit comments