Imaging solutions with Free Software & Open Hardware

Who's online

There are currently 0 users online.

Andrey Filippov pushed to project branch lwir16 at Elphel / imagej-elphel

Elphel GIT logs - Sun, 02/20/2022 - 16:46
Andrey Filippov (ad220366) at 20 Feb 23:46 debugging tiles with dual-maximums in correlation (FG/BG)

Andrey Filippov pushed to project branch lwir16 at Elphel / imagej-elphel

Elphel GIT logs - Tue, 02/15/2022 - 23:59
Andrey Filippov (8d033226) at 16 Feb 06:59 Optional common gains for all pairs

Andrey Filippov pushed to project branch lwir16 at Elphel / imagej-elphel

Elphel GIT logs - Tue, 02/15/2022 - 00:17
Andrey Filippov (c3ee5b3f) at 15 Feb 07:17 Dual max LMA

Andrey Filippov pushed to project branch lwir16 at Elphel / imagej-elphel

Elphel GIT logs - Mon, 02/07/2022 - 22:34
Andrey Filippov (db3deeef) at 08 Feb 05:34 Developing dual-max LMA. Before simultaneous fitting

Andrey Filippov pushed to project branch lwir16 at Elphel / imagej-elphel

Elphel GIT logs - Sat, 02/05/2022 - 13:48
Andrey Filippov (b9cc7d77) at 05 Feb 20:48 Fixing disparity scaling (GPU only so far) between diameter cameras...

Andrey Filippov pushed to project branch lwir16 at Elphel / imagej-elphel

Elphel GIT logs - Fri, 02/04/2022 - 16:16
Andrey Filippov (9fb7ab22) at 04 Feb 23:16 Started with dual-max (FG+BG, such as semi-transparent grass, bushes)

Andrey Filippov pushed to project branch lwir16 at Elphel / imagej-elphel

Elphel GIT logs - Tue, 02/01/2022 - 09:20
Andrey Filippov (fd67c744) at 01 Feb 16:20 updating before branching

Poky manual

Wiki Recent Changes - Thu, 01/27/2022 - 14:00

‎Setup

← Older revision Revision as of 21:00, 27 January 2022 Line 100: Line 100:  <font size='2'> <font size='2'>    git clone -b '''warrior''' https://git.elphel.com/Elphel/elphel393.git   git clone -b '''warrior''' https://git.elphel.com/Elphel/elphel393.git  +  +If you are a developer and plan to commit changes you should use ssh access instead: git clone -b warrior git@git.elphel.com:Elphel/elphel393.git  +  +    cd elphel393   cd elphel393    ./setup.py   ./setup.py Andrey.filippov

Andrey Filippov pushed to project branch warrior at Elphel / elphel393

Elphel GIT logs - Thu, 01/27/2022 - 13:09
Andrey Filippov (ba39daa8) at 27 Jan 20:09 changed linux-elphel branch to warrior-boson

Using minicom to connect to Elphel393 camera

Wiki Recent Changes - Thu, 01/27/2022 - 12:05

← Older revision Revision as of 19:05, 27 January 2022 Line 43: Line 43:    ~$ sudo minicom -s   ~$ sudo minicom -s    −Go to 'Serial port setup',  change 'Serial Device'(A) to /dev/ttyUSB0, turn off 'Hardware Flow Control'(F), leave default 'Bps/Par/Bits' (E) at 115200 8N1  and 'Save setup as dfl' in the higher menu. Now you can start minicom+Go to 'Serial port setup',  +  change 'Serial Device'(A) to /dev/ttyUSB0,  + turn off 'Hardware Flow Control'(F),    + leave default 'Bps/Par/Bits' (E) at 115200 8N1  +  and 'Save setup as dfl' in the higher menu.  +Now you can start minicom       ~$ minicom -c on   ~$ minicom -c on     and it will connect to a camera. and it will connect to a camera. Andrey.filippov

Poky manual

Wiki Recent Changes - Wed, 01/26/2022 - 15:26

‎Setup

← Older revision Revision as of 22:26, 26 January 2022 (5 intermediate revisions by the same user not shown)Line 89: Line 89:     ==<font color="blue">Setup</font>== ==<font color="blue">Setup</font>==  +* Before building  +Installing some dependencies:  + sudo apt install git build-essential chrpath diffstat gawk makeinfo zlib1g-dev python3-numpy  +Installing old python2.7 (bitbake snapshot that we used has problem with python3.8):  + sudo apt install python2.7  + sudo ln -s python2.7 python2  + sudo ln -s python2.7 python     * Poky 2.7.1 Warrior (Kubuntu 20.04) * Poky 2.7.1 Warrior (Kubuntu 20.04) Line 110: Line 117:  <!--''Temporary: linux-xlnx in Rocko depends on branch 'lwir' for x393. Change in projects.json line 42 from 'master' to 'lwir'.''--> <!--''Temporary: linux-xlnx in Rocko depends on branch 'lwir' for x393. Change in projects.json line 42 from 'master' to 'lwir'.''-->  </font></s> </font></s>  +  +* Notes (required actions are already listed above): When trying to run bitbake on a new install got problems with older bitbake version (current build uses specific snapshot) and python3.8. So I install old python2.7 and linked it:  + sudo apt install python2.7  + sudo ln -s python2.7 python2  + sudo ln -s python2.7 python  +  +After this bitbake just complained about missing tools (git, build-essential were already installed):  +  + sudo apt install chrpath diffstat gawk makeinfo  +  +Program test_mcntrl.py that builds x393.h header files from FPGA code that runs during ./setup.py requires numpy and results in error output if missing Still setup.py continues, you need to look through its output few lines after  + * x393  + git host: git.elphel.com  + Clone and checkout: x393  +  +You may install numpy with  + sudo apt install python3-numpy  +  +If you did not notice missing numpy, then during bitbake you will get error "build No rule to make target 'drivers/elphel/x393.o', needed by 'drivers/elphel/built-in.a'.  Stop." in that case you need to install numpy, re-run setup.py (make sure numpy error is gone) then re-create linux kernel links during next build by erasing old ones:  + bitbake linux-xlnx -c clean  +and re-running  + bitbake linux-xlnx device-tree core-image-elphel393  +  +When building php: configure: error: zip support requires ZLIB. Use --with-zlib-dir=<DIR> to specify prefix where ZLIB include and library are located  + sudo apt install zlib1g-dev     ==<font color="blue">Compare '''built''' vs '''deployed''' software versions</font>== ==<font color="blue">Compare '''built''' vs '''deployed''' software versions</font>== Andrey.filippov

Poky manual

Wiki Recent Changes - Wed, 01/26/2022 - 15:12

‎Setup

← Older revision Revision as of 22:12, 26 January 2022 (3 intermediate revisions by the same user not shown)Line 110: Line 110:  <!--''Temporary: linux-xlnx in Rocko depends on branch 'lwir' for x393. Change in projects.json line 42 from 'master' to 'lwir'.''--> <!--''Temporary: linux-xlnx in Rocko depends on branch 'lwir' for x393. Change in projects.json line 42 from 'master' to 'lwir'.''-->  </font></s> </font></s>  +  +* Notes: When trying to run bitbake on a new install got problems with older bitbake version (current build uses specific snapshot) and python3.8. So I install old python2.7 and linked it:  + sudo apt install python2.7  + sudo ln -s python2.7 python2  + sudo ln -s python2.7 python  +  +After this bitbake just complained about missing tools (git, build-essential were already installed):  +  + sudo apt install chrpath diffstat gawk makeinfo  +  +Program test_mcntrl.py that builds x393.h header files from FPGA code that runs during ./setup.py requires numpy and results in error output if missing Still setup.py continues, you need to look through its output few lines after  + * x393  + git host: git.elphel.com  + Clone and checkout: x393  +  +You may install numpy with  + sudo apt install python3-numpy  +  +If you did not notice missing numpy, then during bitbake you will get error "build No rule to make target 'drivers/elphel/x393.o', needed by 'drivers/elphel/built-in.a'.  Stop." in that case you need to install numpy, re-run setup.py (make sure numpy error is gone) then re-create linux kernel links during next build by erasing old ones:  + bitbake linux-xlnx -c clean  +and re-running  + bitbake linux-xlnx device-tree core-image-elphel393  +  +When building php: configure: error: zip support requires ZLIB. Use --with-zlib-dir=<DIR> to specify prefix where ZLIB include and library are located  + sudo apt install zlib1g-dev     ==<font color="blue">Compare '''built''' vs '''deployed''' software versions</font>== ==<font color="blue">Compare '''built''' vs '''deployed''' software versions</font>== Andrey.filippov

Andrey Filippov pushed to project branch warrior at Elphel / elphel-web-393

Elphel GIT logs - Wed, 01/26/2022 - 13:42
Andrey Filippov (c86c08b9) at 26 Jan 20:42 overdue commit of lwir16 controls from summer 2021 ... and 1 more commit

Andrey Filippov pushed to project branch warrior at Elphel / meta-elphel393

Elphel GIT logs - Wed, 01/26/2022 - 13:39
Andrey Filippov (24b85cf6) at 26 Jan 20:39 overdue commit for lighttpd related to websockets

Poky manual

Wiki Recent Changes - Wed, 01/26/2022 - 13:19

‎Setup

← Older revision Revision as of 20:19, 26 January 2022 Line 110: Line 110:  <!--''Temporary: linux-xlnx in Rocko depends on branch 'lwir' for x393. Change in projects.json line 42 from 'master' to 'lwir'.''--> <!--''Temporary: linux-xlnx in Rocko depends on branch 'lwir' for x393. Change in projects.json line 42 from 'master' to 'lwir'.''-->  </font></s> </font></s>  +  +* Notes: When trying to run bitbake on a new install got problems with older bitbake version (current build uses specific snapshot) and python3.8. So I install old python2.7 and linked it:  + sudo apt install python2.7  + sudo ln -s python2.7 python2  + sudo ln -s python2.7 python  +  +After this bitbake just complained about missing tools (git, build-essential were already installed):  +  + sudo apt install chrpath diffstat gawk makeinfo     ==<font color="blue">Compare '''built''' vs '''deployed''' software versions</font>== ==<font color="blue">Compare '''built''' vs '''deployed''' software versions</font>== Andrey.filippov

Andrey Filippov pushed to project branch lwir16 at Elphel / tile_processor_gpu

Elphel GIT logs - Mon, 01/24/2022 - 23:59
Andrey Filippov (9360ed8e) at 25 Jan 06:59 Removed absolute paths

Andrey Filippov pushed to project branch lwir16 at Elphel / imagej-elphel

Elphel GIT logs - Mon, 01/24/2022 - 23:34
Andrey Filippov (a817f0c0) at 25 Jan 06:34 added Eyesis_Correction.xml, updated IJ version, typo fix

Andrey Filippov pushed to project branch lwir16 at Elphel / tile_processor_gpu

Elphel GIT logs - Sun, 01/23/2022 - 21:50
Andrey Filippov (e6c4d24e) at 24 Jan 04:50 Removed some commented out code

Andrey Filippov pushed to project branch lwir16 at Elphel / tile_processor_gpu

Elphel GIT logs - Sun, 01/23/2022 - 21:31
Andrey Filippov (f04d8933) at 24 Jan 04:31 DP works with RGB (40544<48K) but not with LWIR (58880>48K)

Andrey Filippov pushed to project branch lwir16 at Elphel / tile_processor_gpu

Elphel GIT logs - Sun, 01/23/2022 - 21:03
Andrey Filippov (eaf9cd49) at 24 Jan 04:03 Tested DP textures with RGB

Pages

Subscribe to www3.elphel.com aggregator