compile openjpeg guide

Installation  
How to build and install OpenJPEG binaries 
FeaturedRestrict-AddWikiComment-Commit
Updated  Oct 15, 2012 by  mathieu.malaterre

UNIX/LINUX similar systems

Using cmake (see www.cmake.org)

Type:

cmake .
make

If you are root:

make install
make clean

else:

sudo make install
make clean

To build doc (requires 'doxygen' to be found on your system): (this will create an html directory in TOP_LEVEL/doc)

make doc

Binaries are located in the 'bin' directory.

Main available cmake flags:

  • To specify the install path: '-DCMAKE_INSTALL_PREFIX=/path'
  • To build the shared libraries and links the executables against it: '-DBUILD_SHARED_LIBS:bool=on' (default: 'ON')
Note: when using this option, static libraries are not built and executables are dynamically linked.
  • To build the CODEC executables: '-DBUILD_CODEC:bool=on' (default: 'ON')
  • To build the MJ2 executables: '-DBUILD_MJ2:bool=on' (default: 'OFF')
  • To build the JPWL executables and JPWL library: '-DBUILD_JPWL:bool=on' (default: 'OFF')
  • To build the JPIP client (java compiler recommended) library and executables: '-DBUILD_JPIP:bool=on' (default: 'OFF')
  • To build the JPIP server (need fcgi) library and executables: '-DBUILD_JPIP_SERVER:bool=on' (default: 'OFF')
  • To enable testing (and automatic result upload to http://my.cdash.org/index.php?project=OPENJPEG):

    cmake . -DBUILD_TESTING:BOOL=ON -DOPJ_DATA_ROOT:PATH='path/to/the/data/directory' -DBUILDNAME:STRING='name_of_the_build'
    make
    make Experimental

Note : JPEG2000 test files are available with

svn checkout http://openjpeg.googlecode.com/svn/data

If '-DOPJ_DATA_ROOT:PATH' option is omitted, test files will be automatically searched in '${CMAKE_SOURCE_DIR}/../data', corresponding to the location of the data directory when compiling from the trunk (and assuming the data directory has been checked out of course).

Note 2 : to execute the encoding test suite, kakadu binaries are needed to decode encoded image and compare it to the baseline. Kakadu binaries are freely available for non-commercial purposes at http://www.kakadusoftware.com. kdu_expand will need to be in your PATH for cmake to find it.

Using ctest script to perform dashboard submission

You can used ctest command to build the openjepg lib and submit to the dashboard.

ctest -S mymachine_openjpeg.cmake -V

Openjpeg ctest scripts are available with

svn checkout http://openjpeg.googlecode.com/svn/dev-utils

However you need to specify some variables inside the script, so explore the mymachine_openjpeg.cmake file and read the comments. Other files expose the way to perform a nightly submission with different platforms and can provide some tips to create a specific script.

MACOSX

The same building procedures as above (autotools and cmake) work for MACOSX. The xcode project file can also be used.

If it does not work, try adding the following flag to the cmake command :

-DCMAKE_OSX_ARCHITECTURES:STRING=i386

WINDOWS

If you're using cygwin or MinGW+MSYS, the same procedures as for Unix can be used.

Otherwise you can use cmake to generate project files for the IDE you are using (VC2010, etc). Type 'cmake --help' for available generators on your platform.

Using OpenJPEG

To use openjpeg exported cmake file, simply create your application doing:

$ cat CMakeLists.txt
find_package(OpenJPEG REQUIRED)
include_directories(${OPENJPEG_INCLUDE_DIRS})
add_executable(myapp myapp.c)
target_link_libraries(myapp ${OPENJPEG_LIBRARIES})
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值