Download Latest Version SIE-0.2.601.tar.bz2 (2.3 MB)
Email in envelope

Get an email when there's a new version of Scanned Image Extractor

Home
Name Modified Size InfoDownloads / Week
Version-0.2.601 2015-10-01
Version-0.2.595 2015-09-24
Version-0.2.592 2015-08-17
Version-0.1.577 2015-08-04
Readme.txt 2015-09-26 5.1 kB
Totals: 5 Items   5.1 kB 20
Homepage of Scanned Image Extractor: 
http://dominik-ruess.de/scannerExtract/

#######################################################################
#  File Information                                                   #
#######################################################################

The .DEB files have been tested with Ubuntu 15.04, 14.04 (32/64)
The .RPM files have been tested with Fedora 22 (32/64)
The .Exe have been tested with Windows 7, 8, 10

If possible try to use a 64bit Version, since high scan resolutions
(and possibly 16bit) will result in a very high memory consumption. 

The currently still relevant Ubuntu 14.04 cannot run the .DEB files, 
hence I added builds for Ubuntu 14.04. The reason is a different OpenMP
Version. I will try to link OpenMP statically in a future version.

#######################################################################
#  Change Log                                                         #
#######################################################################

----------------------------------------------------------------------
2015-09-26; by Dominik Rueß

- removed a bug which prevented saving on clicking on the save button

- disabled disabling of saving button (user can choose to overwrite)

- on settings changed only non viewed input images will be re-read and analysed


----------------------------------------------------------------------
2015-09-25; by Dominik Rueß

- removed a bug which caused an application crash on loading images

- added successful saving information text on status bar

- removed a bug which caused backslashes in filepath to not save files

- removed a bug which caused an exception on exiting the program

- removed a bug which prevented saving when non existing directory was specified

- added "uninstall before install" which tries to uninstall old versions

- removed some fixed paths and settings for cmake

- added bit information (i.e. 32/64) to about dialog


----------------------------------------------------------------------
2015-08-11; by Dominik Rueß

- added mutex to decrease maximum memory consumption
  (useful for the 32bit vresions)

- added online documentation to docs folder

- A new selection can now also be created by clicking twice
  (used to be only by dragging)

- faster extraction of preview in previously bloccking situations

- made some changes to the online documentation, i.e. howto install

- added the online documentation to the source package

- fixed a bug which would not reload already seen 16bit images

- fixed a bug which caused the application to crash on closing it

-----------------------------------------------------------------------
2015-08; by Dominik Rueß

First release

#######################################################################
#  Content:                                                           #
#######################################################################

1. How to install binaries on different systems
2. How to compile on unix systems

#######################################################################
#  Installing Binaries:                                               #
#######################################################################

WINDOWS:  download the binaries and install. 
          There are no dependencies for the installation binary
          tested with Windows 7

Linux-DEB:
        tested Ubuntu 15.04 with and Ubuntu 14.04 LTS
        1. Pre-requisites:
                sudo apt-get install libqt5core5a libqt5network5 \
                     libqt5gui5 libqt5svg5 libqt5widgets5 liblbfgs0 \
                     libopencv-core2.4 libopencv-highgui2.4 \
                     libopencv-imgproc2.4
        2. install debian package:
                sudo dpkg -i scannerExtract-x.y.z.deb

Linux-RPM:
        tested with Fedora 22
        1. Pre-requisites, adapt to your architecture here:
                sudo dnf install opencv-core.x86_64  qt5-qtsvg.x86_64 \
                     qt5-qtbase.x86_64 liblbfgs-devel.x86_64 \
                     opencv.x86_64
        2. install RPM package:
                rpm --install -p scannerExtract-x.y.z.rpm                

#######################################################################
#  Compile on unix systems:                                           #
#######################################################################

Tested with Ubuntu 15.04

1. pre-requisites
        sudo apt-get install liblbfgs-dev libopencv-dev libqt5svg5-dev \
             qttools5-dev-tools qttools5-dev qtbase5-dev cmake 

2. build (tested on Ubuntu 15.04)
        - commands:
                mkdir build
                cd build
                cmake path/to/scannerExtract-X.Y.Z/scannerExtract/ \
                      -DCMAKE_BUILD_TYPE=release -DOPENCV2=1
                make
                (make install)
        - note: if you use OpenCV2 (e.g. Ubuntu 15.04) then add 
          -DOPENCV2=1 to your cmake call

3. run
        "./scannedImageExtractor" or if installed "scannedImageExtractor"

Source: Readme.txt, updated 2015-09-26