Eyesis4Pi 393 Panorama Previewer
Source
← Older revision Revision as of 18:50, 27 April 2017 Line 12: Line 12: ==Source== ==Source== −Available for direct downloading from the [https://git.elphel.com/Elphel/eyesis4pi393-panorama-previewer.git Elphel Git] or from a terminal window provided GIT client is installed:+Available for direct downloading from the [https://git.elphel.com/Elphel/eyesis4pi-393-panorama-previewer.git Elphel Git] or from a terminal window provided GIT client is installed: <font size='2'> <font size='2'> − git clone https://git.elphel.com/Elphel/eyesis4pi393-panorama-previewer.git panorama_preview+ git clone https://git.elphel.com/Elphel/eyesis4pi-393-panorama-previewer.git panorama_preview </font> </font> OlegEyesis4Pi 393 Footage Procedures page
Step 3
← Older revision Revision as of 18:49, 27 April 2017 (2 intermediate revisions by the same user not shown)Line 22: Line 22: ==Download== ==Download== −Available for direct downloading from the [https://git.elphel.com/Elphel/eyesis4pi393-footage-procedures.git Elphel Git] or from a terminal window provided the GIT is installed:+Available for direct downloading from the [https://git.elphel.com/Elphel/eyesis4pi-393-footage-procedures.git Elphel Git] or from a terminal window provided the GIT is installed: <font size='2'> <font size='2'> − git clone https://git.elphel.com/Elphel/eyesis4pi393-footage-procedures.git footage_procedures+ git clone https://git.elphel.com/Elphel/eyesis4pi-393-footage-procedures.git footage_procedures </font> </font> Line 114: Line 114: * Drag and drop to [http://community.elphel.com/files/eyesis4pi-393/demos/threejs/index.html?file=result_1343349274_575238-0-25-1.jpeg threejs demo] * Drag and drop to [http://community.elphel.com/files/eyesis4pi-393/demos/threejs/index.html?file=result_1343349274_575238-0-25-1.jpeg threejs demo] −* Split images for WebGL Editor (<1min/set)+* Split images for [https://git.elphel.com/Elphel/eyesis4pi-393-panorama-editor WebGL Editor] (<1min/set) − Cuts stitched panoramas into 8 pieces for the WebGL Editor.+ Cuts stitched panoramas into 8 pieces for the [https://git.elphel.com/Elphel/eyesis4pi-393-panorama-editor WebGL Editor]. {| {| |[[File:Testcut.jpeg|thumb|400px|Tiles for the WebGL Editor]] |[[File:Testcut.jpeg|thumb|400px|Tiles for the WebGL Editor]] OlegEyesis4Pi 393 User Guide - Recording
Links
← Older revision Revision as of 18:40, 27 April 2017 (2 intermediate revisions by the same user not shown)Line 219: Line 219: *[[Eyesis4Pi_393_workflow|Workflow]] *[[Eyesis4Pi_393_workflow|Workflow]] *[[Eyesis4Pi_393_User_Guide_-_Recording|User Guide: Recording]] *[[Eyesis4Pi_393_User_Guide_-_Recording|User Guide: Recording]] +*[[Eyesis4Pi_393_User_Guide_-_SSDs|User Guide: SSD maintenance (partition, format, check)]] *[[Eyesis4Pi_393_Downloading_footage|User Guide: Downloading footage]] *[[Eyesis4Pi_393_Downloading_footage|User Guide: Downloading footage]] *[[Eyesis4Pi_393_Footage_Procedures_page|User Guide: Post-Processing selected few panoramas]] *[[Eyesis4Pi_393_Footage_Procedures_page|User Guide: Post-Processing selected few panoramas]] Oleg10393 SSD Debugging
10393 SSD Debugging
Created page with "==Enable Panic== * ''enable_panic.sh'' #!/bin/bash # Enable kernel panic in disk drivers when command timeout has occurred for IP in `seq 161 163`; do ssh-copy-id -i..."
New page
==Enable Panic==* ''enable_panic.sh''
#!/bin/bash
# Enable kernel panic in disk drivers when command timeout has occurred
for IP in `seq 161 163`; do
ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.0."$IP"
ssh root@192.168.0."$IP" 'echo 1 > /sys/devices/soc0/amba\@0/80000000.elphel-ahci/enable_panic_flag'
ssh root@192.168.0."$IP" 'echo ''module ahci_elphel line 526 +p'' > /sys/kernel/debug/dynamic_debug/control'
done
==Read SATA buffer==
* ''read_sata_buffer.py''
#!/usr/bin/env python
from __future__ import print_function
from __future__ import division
import x393sata
import x393_mem
mem = x393_mem.X393Mem(1,0,1)
sata = x393sata.x393sata()
hex([((mem.read_mem(0x80000ffc) >> 10) & 0xffc) + 0x80001000,mem.mem_dump (0x80001000, 0x400,4),sata.reg_status()][0])
print("'"+hex(((mem.read_mem(0x80000ffc)>>10)&0xffc)+0x80001000)+"'") Oleg
Eyesis4Pi 393 User Guide - SSDs
Eyesis4Pi 393 User Guide - SSDs
Created page with "==check partitions== $ ssh root@192.168.161 # umount /mnt/sda1 # fsck.ext4 -fvy /dev/sda1 # mkdir /mnt/sda1 (?) # mount /dev/sda1 /mnt/sda1 repeat for 162 & 163 ==Switc..."
New page
==check partitions==$ ssh root@192.168.161
# umount /mnt/sda1
# fsck.ext4 -fvy /dev/sda1
# mkdir /mnt/sda1 (?)
# mount /dev/sda1 /mnt/sda1
repeat for 162 & 163
==Switch from external to internal drives==
$ ssh root@192.168.161
# /usr/local/bin/x393sata_control.py set_zynq_ssd
# killall -9 camogm
reload GUI in the browser to restart camogm
repeat for 162 & 163
==Switch from internal to external drives==
$ ssh root@192.168.161
# /usr/local/bin/x393sata_control.py set_zynq_esata
# killall -9 camogm
reload GUI in the browser to restart camogm
repeat for 162 & 163
==Format SSD==
1. (optional)
$ ssh root@192.168.161
# fdisk /dev/sda
delete all partitions, save (w) and quit (q)
2. http://192.168.0.161/format_disk.php
Format
3.
$ ssh root@192.168.161
# mkfs.ext4 -T largefile4 -m 0 -O ^has_journal /dev/sda1
# mkdir /mnt/sda1
# mount /dev/sda1 /mnt/sda1
# killall -9 camogm
reload GUI in the browser to restart camogm Oleg
Eyesis4Pi 393 Test Drive Checklist
POST REC (DO NOT POWER OFF)
← Older revision Revision as of 17:50, 27 April 2017 (23 intermediate revisions by the same user not shown)Line 1: Line 1: −==PRE==+====<font color='blue'>TESTS</font>==== −1. '''Settings > Test > Run tests'''+* '''Settings > Test > Run tests''' {| class='wikitable' {| class='wikitable' ! Test ! Test Line 9: Line 9: ! width='20'| 5 ! width='20'| 5 ! width='20'| 6 ! width='20'| 6 +|- +| +| +| +| +| +| +| |} |} −2. GUI displays subcameras' SSDs free spaces?+====<font color='blue'>SETUP & DEBUG</font>==== − +* (optional) '''Settings > Other''' −3. (optional) '''Settings > Other'''+{|class='wikitable' −* Reset Fast REC?+| width='20'| −* Enable camogm log?+| Reset Fast REC? −* '''fsck.ext4 -fvy /dev/sda1'''?+|- − +| width='20'| −4. Extra+| Enable camogm log? − Enable SATA driver log?+|- − +| width='20'| −5. Preview+| '''fsck.ext4 -fvy /dev/sda1'''? − +|} −==REC==+* Extra − +{|class='wikitable' −2. Settings > Camera+| width='20'| −* Set Quality (96)+| Enable SATA driver log (''enable_panic.sh'')? −* Set FPS (250)+|- −* Set Autoexp parameters? max, level, fracpix+| width='20'| −* Change autoexp window?+| Switch to internal/external SSDs (''/usr/local/bin/x393sata_control.py set_zynq_esata'')? − +|} −6. Recording+* Preview +====<font color='blue'>RECORDING</font>==== {| class='wikitable' {| class='wikitable' ! N ! N ! width="100" |1/FPS, ms ! width="100" |1/FPS, ms ! width="100" |Quality, % ! width="100" |Quality, % −! AutoExp: max, level, fracpix, ahead, window+! width="300" | AutoExp: max, level, fracpix, ahead, window −! width="600" |Comments+! width="400" |Comments +|- +|align='center'| 1 +|align='center'| 250 +|align='center'| 96 +|align='center'| 1, 220, 98, 1, all +|align='center'| |- |- −| 1+| 2 −| | | | | +| | | |- |- −| 2+| 3 | | +| | | −| | | |- |- −| 3+| 4 | | | | Line 58: Line 73: | | |} |} − +====<font color='blue'>POST REC </font>(<font color='red'>DO NOT POWER OFF</font>)==== −7. Settings > Other+* '''Settings > Other''' − Download logs+{| class='wikitable' +| width='20'| +|<font color='red'>'''Download logs'''</font> +|} OlegEyesis4Pi 393 Test Drive Checklist
POST REC (DO NOT POWER OFF)
← Older revision Revision as of 17:50, 27 April 2017 (24 intermediate revisions by the same user not shown)Line 1: Line 1: −1. Settings > Test > Run tests+====<font color='blue'>TESTS</font>==== +* '''Settings > Test > Run tests''' {| class='wikitable' {| class='wikitable' ! Test ! Test −! width='20'|1+! width='20'| 1 ! width='20'| 2 ! width='20'| 2 ! width='20'| 3 ! width='20'| 3 Line 8: Line 9: ! width='20'| 5 ! width='20'| 5 ! width='20'| 6 ! width='20'| 6 +|- +| +| +| +| +| +| +| |} |} −2. Settings > Camera+====<font color='blue'>SETUP & DEBUG</font>==== −* Set Quality (96)+* (optional) '''Settings > Other''' −* Set FPS (250)+{|class='wikitable' −* Set Autoexp parameters? max, level, fracpix+| width='20'| −* Change autoexp window?+| Reset Fast REC? − +|- −3. Preview+| width='20'| − +| Enable camogm log? −4. Settings > Other+|- − Reset Fast REC?+| width='20'| − Enable camogm log?+| '''fsck.ext4 -fvy /dev/sda1'''? − fsck.ext4 -fvy /dev/sda1?+|} − +* Extra −5. Extra+{|class='wikitable' − Enable SATA driver log?+| width='20'| − +| Enable SATA driver log (''enable_panic.sh'')? −6. Start / Stop+|- +| width='20'| +| Switch to internal/external SSDs (''/usr/local/bin/x393sata_control.py set_zynq_esata'')? +|} +* Preview +====<font color='blue'>RECORDING</font>==== {| class='wikitable' {| class='wikitable' ! N ! N ! width="100" |1/FPS, ms ! width="100" |1/FPS, ms ! width="100" |Quality, % ! width="100" |Quality, % −! width="600" |Comments+! width="300" | AutoExp: max, level, fracpix, ahead, window +! width="400" |Comments |- |- −| 1+|align='center'| 1 +|align='center'| 250 +|align='center'| 96 +|align='center'| 1, 220, 98, 1, all +|align='center'| +|- +| 2 +| +| | | −| | | |- |- −| 2+| 3 | | | | +| | | |- |- −| 3+| 4 +| | | | | | | |} |} − +====<font color='blue'>POST REC </font>(<font color='red'>DO NOT POWER OFF</font>)==== −7. Settings > Other+* '''Settings > Other''' − Download logs+{| class='wikitable' +| width='20'| +|<font color='red'>'''Download logs'''</font> +|} OlegEyesis4Pi 393 Test Drive Checklist
POST REC (DO NOT POWER OFF)
← Older revision Revision as of 17:50, 27 April 2017 (26 intermediate revisions by the same user not shown)Line 1: Line 1: −1. Settings > Test > Run tests+====<font color='blue'>TESTS</font>==== +* '''Settings > Test > Run tests''' {| class='wikitable' {| class='wikitable' ! Test ! Test −! Result+! width='20'| 1 −! width='400'| Comments+! width='20'| 2 +! width='20'| 3 +! width='20'| 4 +! width='20'| 5 +! width='20'| 6 |- |- −| 1+| −|+| −|+| +| +| +| +| +|} + +====<font color='blue'>SETUP & DEBUG</font>==== +* (optional) '''Settings > Other''' +{|class='wikitable' +| width='20'| +| Reset Fast REC? |- |- −| 2+| width='20'| −|+| Enable camogm log? −| |- |- −| 3+| width='20'| −|+| '''fsck.ext4 -fvy /dev/sda1'''? −|+|} −|-+* Extra −| 4+{|class='wikitable' −|+| width='20'| −|+| Enable SATA driver log (''enable_panic.sh'')? |- |- −| 5+| width='20'| −|+| Switch to internal/external SSDs (''/usr/local/bin/x393sata_control.py set_zynq_esata'')? −| −|- −| 6 −| −| |} |} +* Preview −2. Settings > Camera+====<font color='blue'>RECORDING</font>==== − Set quality (96) − Set fps (250) − Set autoexp parameters? − max − level − fracpix − Change autoexp window? − −3. Preview − −4. Settings > Other − Reset Fast REC? − Enable camogm log? − fsck.ext4 -fvy /dev/sda1? − −5. Extra − Enable SATA driver log? − −6. Start / Stop − {| class='wikitable' {| class='wikitable' ! N ! N ! width="100" |1/FPS, ms ! width="100" |1/FPS, ms ! width="100" |Quality, % ! width="100" |Quality, % −! width="600" |Comments+! width="300" | AutoExp: max, level, fracpix, ahead, window +! width="400" |Comments +|- +|align='center'| 1 +|align='center'| 250 +|align='center'| 96 +|align='center'| 1, 220, 98, 1, all +|align='center'| |- |- −| 1+| 2 +| +| | | −| | | |- |- −| 2+| 3 | | | | +| | | |- |- −| 3+| 4 +| | | | | | | |} |} − +====<font color='blue'>POST REC </font>(<font color='red'>DO NOT POWER OFF</font>)==== −7. Settings > Other+* '''Settings > Other''' − Download logs+{| class='wikitable' +| width='20'| +|<font color='red'>'''Download logs'''</font> +|} OlegEyesis4Pi 393 Test Drive Checklist
POST REC (DO NOT POWER OFF)
← Older revision Revision as of 17:50, 27 April 2017 (28 intermediate revisions by the same user not shown)Line 1: Line 1: −1. Settings > Test > Run tests+====<font color='blue'>TESTS</font>==== − Test 1:+* '''Settings > Test > Run tests''' − Test 2:+{| class='wikitable' − Test 3:+! Test − Test 4:+! width='20'| 1 − Test 5:+! width='20'| 2 − Test 6:+! width='20'| 3 +! width='20'| 4 +! width='20'| 5 +! width='20'| 6 +|- +| +| +| +| +| +| +| +|} −2. Settings > Camera+====<font color='blue'>SETUP & DEBUG</font>==== − Set quality (96)+* (optional) '''Settings > Other''' − Set fps (250)+{|class='wikitable' − Set autoexp parameters?+| width='20'| − max+| Reset Fast REC? − level+|- − fracpix+| width='20'| − Change autoexp window?+| Enable camogm log? − +|- −3. Preview+| width='20'| − +| '''fsck.ext4 -fvy /dev/sda1'''? −4. Settings > Other+|} − Reset Fast REC?+* Extra − Enable camogm log?+{|class='wikitable' − fsck.ext4 -fvy /dev/sda1?+| width='20'| − +| Enable SATA driver log (''enable_panic.sh'')? −5. Extra+|- − Enable SATA driver log?+| width='20'| − +| Switch to internal/external SSDs (''/usr/local/bin/x393sata_control.py set_zynq_esata'')? −6. Start / Stop+|} +* Preview +====<font color='blue'>RECORDING</font>==== {| class='wikitable' {| class='wikitable' ! N ! N ! width="100" |1/FPS, ms ! width="100" |1/FPS, ms ! width="100" |Quality, % ! width="100" |Quality, % +! width="300" | AutoExp: max, level, fracpix, ahead, window ! width="400" |Comments ! width="400" |Comments |- |- −| 1+|align='center'| 1 −| +|align='center'| 250 −|+|align='center'| 96 −|+|align='center'| 1, 220, 98, 1, all +|align='center'| |- |- | 2 | 2 +| | | | | Line 45: Line 62: |- |- | 3 | 3 +| | | | | Line 50: Line 68: |- |- | 4 | 4 −| | | −| −|- −| 5 | | | | | | −|- −| 6 −| −| −| −|- −| 7 −| −| −| −|- −| 8 −| −| −| −|- −| 9 −| −| −| −|- −| 10 −| −| −| |} |} − +====<font color='blue'>POST REC </font>(<font color='red'>DO NOT POWER OFF</font>)==== −7. Settings > Other+* '''Settings > Other''' − Download logs+{| class='wikitable' +| width='20'| +|<font color='red'>'''Download logs'''</font> +|} OlegEyesis4Pi 393 Test Drive Checklist
POST REC (DO NOT POWER OFF)
← Older revision Revision as of 17:50, 27 April 2017 (31 intermediate revisions by the same user not shown)Line 1: Line 1: −1. Settings > Test > Run tests+====<font color='blue'>TESTS</font>==== − Test 1:+* '''Settings > Test > Run tests''' − Test 2:+{| class='wikitable' − Test 3:+! Test − Test 4:+! width='20'| 1 − Test 5:+! width='20'| 2 − Test 6:+! width='20'| 3 +! width='20'| 4 +! width='20'| 5 +! width='20'| 6 +|- +| +| +| +| +| +| +| +|} −2. Settings > Camera+====<font color='blue'>SETUP & DEBUG</font>==== − Set quality (96)+* (optional) '''Settings > Other''' − Set fps (250)+{|class='wikitable' − Set autoexp parameters?+| width='20'| − max+| Reset Fast REC? − level+|- − fracpix+| width='20'| − Change autoexp window?+| Enable camogm log? +|- +| width='20'| +| '''fsck.ext4 -fvy /dev/sda1'''? +|} +* Extra +{|class='wikitable' +| width='20'| +| Enable SATA driver log (''enable_panic.sh'')? +|- +| width='20'| +| Switch to internal/external SSDs (''/usr/local/bin/x393sata_control.py set_zynq_esata'')? +|} +* Preview −3. Preview+====<font color='blue'>RECORDING</font>==== − +{| class='wikitable' −4. Settings > Other+! N − Reset Fast REC?+! width="100" |1/FPS, ms − Enable camogm log?+! width="100" |Quality, % − fsck.ext4 -fvy /dev/sda1?+! width="300" | AutoExp: max, level, fracpix, ahead, window − +! width="400" |Comments −5. Extra+|- − Enable SATA driver log?+|align='center'| 1 − +|align='center'| 250 −6. Start / Stop+|align='center'| 96 − +|align='center'| 1, 220, 98, 1, all −7. Settings > Other+|align='center'| − Download logs+|- +| 2 +| +| +| +| +|- +| 3 +| +| +| +| +|- +| 4 +| +| +| +| +|} +====<font color='blue'>POST REC </font>(<font color='red'>DO NOT POWER OFF</font>)==== +* '''Settings > Other''' +{| class='wikitable' +| width='20'| +|<font color='red'>'''Download logs'''</font> +|} OlegEyesis4Pi 393 Test Drive Checklist
POST REC (DO NOT POWER OFF)
← Older revision Revision as of 17:50, 27 April 2017 (32 intermediate revisions by the same user not shown)Line 1: Line 1: −1. Settings > Test > Run tests+====<font color='blue'>TESTS</font>==== − Test 1:+* '''Settings > Test > Run tests''' − Test 2:+{| class='wikitable' − Test 3:+! Test − Test 4:+! width='20'| 1 − Test 5:+! width='20'| 2 − Test 6:+! width='20'| 3 +! width='20'| 4 +! width='20'| 5 +! width='20'| 6 +|- +| +| +| +| +| +| +| +|} −2. Settings > Camera+====<font color='blue'>SETUP & DEBUG</font>==== − Set quality (96)+* (optional) '''Settings > Other''' − Set fps (250)+{|class='wikitable' − Set autoexp parameters?+| width='20'| − max+| Reset Fast REC? − level+|- − fracpix+| width='20'| − Change autoexp window?+| Enable camogm log? +|- +| width='20'| +| '''fsck.ext4 -fvy /dev/sda1'''? +|} +* Extra +{|class='wikitable' +| width='20'| +| Enable SATA driver log (''enable_panic.sh'')? +|- +| width='20'| +| Switch to internal/external SSDs (''/usr/local/bin/x393sata_control.py set_zynq_esata'')? +|} +* Preview −3. Preview+====<font color='blue'>RECORDING</font>==== − +{| class='wikitable' −4. Settings > Other+! N − Reset Fast REC?+! width="100" |1/FPS, ms − fsck.ext4 -fvy /dev/sda1?+! width="100" |Quality, % − +! width="300" | AutoExp: max, level, fracpix, ahead, window −5. Extra+! width="400" |Comments − Enable SATA driver log?+|- − +|align='center'| 1 −6. Start / Stop+|align='center'| 250 − +|align='center'| 96 −7. Settings > Other+|align='center'| 1, 220, 98, 1, all − Download logs+|align='center'| +|- +| 2 +| +| +| +| +|- +| 3 +| +| +| +| +|- +| 4 +| +| +| +| +|} +====<font color='blue'>POST REC </font>(<font color='red'>DO NOT POWER OFF</font>)==== +* '''Settings > Other''' +{| class='wikitable' +| width='20'| +|<font color='red'>'''Download logs'''</font> +|} OlegEyesis4Pi 393 Test Drive Checklist
Eyesis4Pi 393 Test Drive Checklist
Eyesis4Pi 393 Test Drive Checklist
Eyesis4Pi 393 Test Drive Checklist
Created page with "1. Settings > Test > Run tests Test 1: Test 2: Test 3: Test 4: Test 5: Test 6: 2. Settings > Camera Set quality (96) Set fps (250) Set autoexp parameters? max..."
New page
1. Settings > Test > Run testsTest 1:
Test 2:
Test 3:
Test 4:
Test 5:
Test 6:
2. Settings > Camera
Set quality (96)
Set fps (250)
Set autoexp parameters?
max
level
fracpix
Change autoexp window?
3. Preview
4. Settings > Other
Reset Fast REC?
fsck.ext4 -fvy /dev/sda1?
5. Extra
Enable SATA driver log?
6. Start / Stop
7. Settings > Other
Download logs Oleg
Eyesis4Pi 393 Footage Procedures page
Eyesis4pi Post-Processing
Instructions
← Older revision Revision as of 00:43, 25 April 2017 Line 32: Line 32: |[[File:Eyesis correction.png|thumb|800px|Eyesis corrections plugin interface]] |[[File:Eyesis correction.png|thumb|800px|Eyesis corrections plugin interface]] |} |} −* '''Restore''' button > browse for ''default_config.corr-xml'' (should be located on the drive with calibration data, restores parameters for '''Configure correction''')+* '''Restore''' button > browse for ''default-config.corr-xml'' (should be located on the drive with calibration data, restores parameters for '''Configure correction''') * '''Configure correction''' button - make sure that the following paths are set correctly (if not - edit or mark the checkboxes - a dialog for each path will pop up): * '''Configure correction''' button - make sure that the following paths are set correctly (if not - edit or mark the checkboxes - a dialog for each path will pop up): <font size='2'> <font size='2'> OlegEyesis4pi Post-Processing
Instructions
← Older revision Revision as of 00:43, 25 April 2017 (7 intermediate revisions by the same user not shown)Line 10: Line 10: ==Requirements== ==Requirements== * Linux OS (Kubuntu preferably). * Linux OS (Kubuntu preferably). −* [[Elphel_Software_Kit_for_Ubuntu#ImageJ_and_Elphel_plugins_for_imageJ|ImageJ and Elphel plugins]].+* [[Elphel_Software_Kit_for_Ubuntu#ImageJ_and_Elphel_plugins_for_imageJ|ImageJ and Elphel plugins]] (most of the post-processing). −* [http://hugin.sourceforge.net/ Hugin tools] - ''enblend''.+* [http://hugin.sourceforge.net/ Hugin tools] - ''enblend'' (for simple stitching). −* [http://www.imagemagick.org/script/index.php ImageMagick] - ''convert''.+* [http://www.imagemagick.org/script/index.php ImageMagick] - ''convert'' (for converting). * [http://php.net/ PHP] * [http://php.net/ PHP] * Get calibration kernels for the current Eyesis4Pi (come on a HDD with a camera).<!--Example kernels and sensor files can be found [http://eyesisbox.elphel.com/post-processing/calibration/ here]('''~78GB''', download everything).--> * Get calibration kernels for the current Eyesis4Pi (come on a HDD with a camera).<!--Example kernels and sensor files can be found [http://eyesisbox.elphel.com/post-processing/calibration/ here]('''~78GB''', download everything).--> Line 30: Line 30: {| {| |- valign="top" |- valign="top" −|[[File:Eyesis_corrections_plugin.jpeg|thumb|800px|Eyesis corrections plugin interface]]+|[[File:Eyesis correction.png|thumb|800px|Eyesis corrections plugin interface]] |} |} −* '''Restore''' button -> browse for ''default_config.corr-xml'' (restores parameters for '''Configure correction''')+* '''Restore''' button > browse for ''default-config.corr-xml'' (should be located on the drive with calibration data, restores parameters for '''Configure correction''') −* '''Configure correction''' button - make sure that the following paths are set correctly (if not - mark the checkboxes - a dialog for each path will pop up):+* '''Configure correction''' button - make sure that the following paths are set correctly (if not - edit or mark the checkboxes - a dialog for each path will pop up): <font size='2'> <font size='2'> '''Source files directory''' - directory with the footage images '''Source files directory''' - directory with the footage images Line 52: Line 52: * '''Configure warping''' (''Skip if the files already exist'') -> rebuild map files - this will create maps in [YOUR-PATH]/calibration/equirectangular_maps. Will take ~5-10 minutes. * '''Configure warping''' (''Skip if the files already exist'') -> rebuild map files - this will create maps in [YOUR-PATH]/calibration/equirectangular_maps. Will take ~5-10 minutes. * '''Select source files''' -> select all the footage files to be processed. * '''Select source files''' -> select all the footage files to be processed. −* '''Process files''' to start the processing. Depending on the PC power can take ~40 minutes for a panorama of (24+2) images.+* '''Process files''' to start the processing. Depending on the PC power can take ~20 minutes for a panorama of (24+2) images. +* The last 2 rows of the UI are experimental and not related to Eyesis4Pi. No need to use. * After processing is done there is only the blending step. It can be launched manually or from the WebGUI: * After processing is done there is only the blending step. It can be launched manually or from the WebGUI: −**[[Eyesis4Pi_Footage_Procedures_page#Step_3|WebGUI]]+**[[Eyesis4Pi_393_Footage_Procedures_page#Step_3|WebGUI]] −**Manual blending: [http://community.elphel.com/files/eyesis4pi/post-processing/stitch.php the following script] scans directory for *.tiffs from ImageJ and uses '''enblend'''(to stitch into 16-bit tiffs) and converts them into jpegs, in terminal:+**Manual blending: [http://community.elphel.com/files/eyesis4pi/post-processing/stitch.php the following script] scans directory for *.tiffs from ImageJ and uses '''enblend''' (to stitch into 16-bit tiffs) and converts them into jpegs, in terminal: <font size='2'> <font size='2'> php stitch.php [source_directory] [destination_directory] php stitch.php [source_directory] [destination_directory] Oleg