Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{vis}[foss/2021a] OpenCV v4.5.3 w/ Python 3.9.5 (+ CUDA 11.3.1) #14115

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name = 'OpenCV'
version = '4.5.3'
versionsuffix = '-CUDA-%(cudaver)s-contrib'

# the hash is version dependent! see 3rdparty/ippicv/ippicv.cmake
local_ippicv_hash = 'a56b6ac6f030c312b2dce17430eef13aed9af274'

homepage = 'https://opencv.org/'
description = """OpenCV (Open Source Computer Vision Library) is an open source computer vision
and machine learning software library. OpenCV was built to provide
a common infrastructure for computer vision applications and to accelerate
the use of machine perception in the commercial products.
Includes extra modules for OpenCV from the contrib repository."""

toolchain = {'name': 'foss', 'version': '2021a'}

sources = [
{'source_urls': ['https://github.com/opencv/opencv/archive/'],
'download_filename': '%(version)s.zip', 'filename': SOURCELOWER_ZIP},
{'source_urls': ['https://github.com/opencv/opencv_contrib/archive/'],
'download_filename': '%(version)s.zip', 'filename': '%(namelower)s_contrib-%(version)s.zip'},
{'source_urls': ['https://raw.githubusercontent.com/opencv/opencv_3rdparty/%s/ippicv' % local_ippicv_hash],
'filename': 'ippicv_2020_lnx_intel64_20191018_general.tgz', 'extract_cmd': "cp %s %(builddir)s"},
]
checksums = [
'a61e7a4618d353140c857f25843f39b2abe5f451b018aab1604ef0bc34cd23d5', # opencv-4.5.3.zip
'dc3317950cf0d6cab6d24ec8df864d5e7c4efe39627dbd1c7c177dc12a8bcd78', # opencv_contrib-4.5.3.zip
'08627fa5660d52d59309a572dd7db5b9c8aea234cfa5aee0942a1dd903554246', # ippicv_2020_lnx_intel64_20191018_general.tgz
]

builddependencies = [
('CMake', '3.20.1'),
]

dependencies = [
('Python', '3.9.5'),
('SciPy-bundle', '2021.05'), # for numpy
('zlib', '1.2.11'),
('FFmpeg', '4.3.2'),
('freetype', '2.10.4'),
('HarfBuzz', '2.8.1'),
('libjpeg-turbo', '2.0.6'),
('libpng', '1.6.37'),
('LibTIFF', '4.2.0'),
('libwebp', '1.2.0'),
('OpenEXR', '3.0.1'),
('JasPer', '2.0.28'),
('Java', '11', '', True),
('ant', '1.10.9', '-Java-%(javaver)s', True),
('GLib', '2.68.2'),
('GTK3', '3.24.29'),
('HDF5', '1.10.7'), # needed by hdf from contrib
('CUDA', '11.3.1', '', True),
('cuDNN', '8.2.1.32', '-CUDA-%(cudaver)s', True),
]

# XXXX in configurations is a bug fix in OpenCV because ocv_check_modules is not able to recognize freetype and harfbuzz
# ref: https://github.com/opencv/opencv/blob/6e8daaec0f46aaba9ea22e2afce47307b1dbff9f/cmake/OpenCVUtils.cmake#L861
configopts = '-DOPENCV_EXTRA_MODULES_PATH=%(builddir)s/%(namelower)s_contrib-%(version)s/modules '
configopts += '-DFREETYPE_FOUND=ON '
configopts += '-DFREETYPE_INCLUDE_DIRS=$EBROOTFREETYPE/include/freetype2/ '
configopts += '-DFREETYPE_LIBRARIES=$EBROOTFREETYPE/lib64/libfreetype.so '
configopts += '-DFREETYPE_LINK_LIBRARIES=$EBROOTFREETYPE/lib64/libfreetype.so '
configopts += '-DFREETYPE_LINK_LIBRARIES_XXXXX=ON '
configopts += '-DHARFBUZZ_FOUND=ON '
configopts += '-DHARFBUZZ_INCLUDE_DIRS=$EBROOTHARFBUZZ/include/harfbuzz '
configopts += '-DHARFBUZZ_LIBRARIES=$EBROOTHARFBUZZ/lib64/libharfbuzz.so '
configopts += '-DHARFBUZZ_LINK_LIBRARIES=$EBROOTHARFBUZZ/lib64/libharfbuzz.so '
configopts += '-DHARFBUZZ_LINK_LIBRARIES_XXXXX=ON '
configopts += '-DBUILD_opencv_python2=OFF '

enhance_sanity_check = True

local_contrib_libs = [
'aruco', 'bgsegm', 'bioinspired', 'ccalib', 'datasets', 'dnn_objdetect', 'dnn_superres', 'dpm', 'face', 'freetype',
'fuzzy', 'hdf', 'hfs', 'img_hash', 'line_descriptor', 'optflow', 'phase_unwrapping', 'plot', 'quality', 'reg',
'rgbd', 'saliency', 'shape', 'stereo', 'structured_light', 'superres', 'surface_matching', 'text', 'tracking',
'videostab', 'xfeatures2d', 'ximgproc', 'xobjdetect', 'xphoto'
]

sanity_check_paths = {
'files': ['lib64/libopencv_%s.%s' % (l, SHLIB_EXT) for l in local_contrib_libs],
'dirs': [],
}

moduleclass = 'vis'
84 changes: 84 additions & 0 deletions easybuild/easyconfigs/o/OpenCV/OpenCV-4.5.3-foss-2021a-contrib.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name = 'OpenCV'
version = '4.5.3'
versionsuffix = '-contrib'

# the hash is version dependent! see 3rdparty/ippicv/ippicv.cmake
local_ippicv_hash = 'a56b6ac6f030c312b2dce17430eef13aed9af274'

homepage = 'https://opencv.org/'
description = """OpenCV (Open Source Computer Vision Library) is an open source computer vision
and machine learning software library. OpenCV was built to provide
a common infrastructure for computer vision applications and to accelerate
the use of machine perception in the commercial products.
Includes extra modules for OpenCV from the contrib repository."""

toolchain = {'name': 'foss', 'version': '2021a'}

sources = [
{'source_urls': ['https://github.com/opencv/opencv/archive/'],
'download_filename': '%(version)s.zip', 'filename': SOURCELOWER_ZIP},
{'source_urls': ['https://github.com/opencv/opencv_contrib/archive/'],
'download_filename': '%(version)s.zip', 'filename': '%(namelower)s_contrib-%(version)s.zip'},
{'source_urls': ['https://raw.githubusercontent.com/opencv/opencv_3rdparty/%s/ippicv' % local_ippicv_hash],
'filename': 'ippicv_2020_lnx_intel64_20191018_general.tgz', 'extract_cmd': "cp %s %(builddir)s"},
]
checksums = [
'a61e7a4618d353140c857f25843f39b2abe5f451b018aab1604ef0bc34cd23d5', # opencv-4.5.3.zip
'dc3317950cf0d6cab6d24ec8df864d5e7c4efe39627dbd1c7c177dc12a8bcd78', # opencv_contrib-4.5.3.zip
'08627fa5660d52d59309a572dd7db5b9c8aea234cfa5aee0942a1dd903554246', # ippicv_2020_lnx_intel64_20191018_general.tgz
]

builddependencies = [
('CMake', '3.20.1'),
]

dependencies = [
('Python', '3.9.5'),
('SciPy-bundle', '2021.05'), # for numpy
('zlib', '1.2.11'),
('FFmpeg', '4.3.2'),
('freetype', '2.10.4'),
('HarfBuzz', '2.8.1'),
('libjpeg-turbo', '2.0.6'),
('libpng', '1.6.37'),
('LibTIFF', '4.2.0'),
('libwebp', '1.2.0'),
('OpenEXR', '3.0.1'),
('JasPer', '2.0.28'),
('Java', '11', '', True),
('ant', '1.10.9', '-Java-%(javaver)s', True),
('GLib', '2.68.2'),
('GTK3', '3.24.29'),
('HDF5', '1.10.7'), # needed by hdf from contrib
]

# XXXX in configurations is a bug fix in OpenCV because ocv_check_modules is not able to recognize freetype and harfbuzz
# ref: https://github.com/opencv/opencv/blob/6e8daaec0f46aaba9ea22e2afce47307b1dbff9f/cmake/OpenCVUtils.cmake#L861
configopts = '-DOPENCV_EXTRA_MODULES_PATH=%(builddir)s/%(namelower)s_contrib-%(version)s/modules '
configopts += '-DFREETYPE_FOUND=ON '
configopts += '-DFREETYPE_INCLUDE_DIRS=$EBROOTFREETYPE/include/freetype2/ '
configopts += '-DFREETYPE_LIBRARIES=$EBROOTFREETYPE/lib64/libfreetype.so '
configopts += '-DFREETYPE_LINK_LIBRARIES=$EBROOTFREETYPE/lib64/libfreetype.so '
configopts += '-DFREETYPE_LINK_LIBRARIES_XXXXX=ON '
configopts += '-DHARFBUZZ_FOUND=ON '
configopts += '-DHARFBUZZ_INCLUDE_DIRS=$EBROOTHARFBUZZ/include/harfbuzz '
configopts += '-DHARFBUZZ_LIBRARIES=$EBROOTHARFBUZZ/lib64/libharfbuzz.so '
configopts += '-DHARFBUZZ_LINK_LIBRARIES=$EBROOTHARFBUZZ/lib64/libharfbuzz.so '
configopts += '-DHARFBUZZ_LINK_LIBRARIES_XXXXX=ON '
configopts += '-DBUILD_opencv_python2=OFF '

enhance_sanity_check = True

local_contrib_libs = [
'aruco', 'bgsegm', 'bioinspired', 'ccalib', 'datasets', 'dnn_objdetect', 'dnn_superres', 'dpm', 'face', 'freetype',
'fuzzy', 'hdf', 'hfs', 'img_hash', 'line_descriptor', 'optflow', 'phase_unwrapping', 'plot', 'quality', 'reg',
'rgbd', 'saliency', 'shape', 'stereo', 'structured_light', 'superres', 'surface_matching', 'text', 'tracking',
'videostab', 'xfeatures2d', 'ximgproc', 'xobjdetect', 'xphoto'
]

sanity_check_paths = {
'files': ['lib64/libopencv_%s.%s' % (l, SHLIB_EXT) for l in local_contrib_libs],
'dirs': [],
}

moduleclass = 'vis'