659
edits
Carandraug (talk | contribs) (→Dependencies: more dependencies) |
Carandraug (talk | contribs) (quick list of commands) |
||
Line 1: | Line 1: | ||
Octave will use [http://www.graphicsmagick.org/ GraphicsMagick] for reading and writing your images (not plots, only if you are actually doing image processing). This means that the GraphicsMagick configuration you have on you system will limit what your Octave installation can do. Most systems will have it onn their repositories. Unfortunately, their configuration is not always the best for image analysis as it limits reading of images to 8-bit. | Octave will use [http://www.graphicsmagick.org/ GraphicsMagick] for reading and writing your images (not plots, only if you are actually doing image processing). This means that the GraphicsMagick configuration you have on you system will limit what your Octave installation can do. Most systems will have it onn their repositories. Unfortunately, their configuration is not always the best for image analysis as it limits reading of images to 8-bit. | ||
== Building == | |||
See below for the reasoning behind each flag and tracking dependencies. Once done, the following commands should work to build GraphicsMagick. | |||
<pre> | |||
./configure --with-quantum-depth=32 --enable-shared --disable-static --with-perl=yes --with-magick-plus-plus=yes | |||
make | |||
make check | |||
make install | |||
</pre> | |||
== Quantum depth == | == Quantum depth == |