Skip to content
Snippets Groups Projects
Commit 1c6e8ce0 authored by David GEISSBUHLER's avatar David GEISSBUHLER
Browse files

added remove_highlight script and data (raytraced plastic bust)

parent 26d44587
No related branches found
No related tags found
1 merge request!6Optimizations
......@@ -4,6 +4,8 @@
from .galbally_iqm_features import compute_quality_features
from .msu_iqa_features import compute_msu_iqa_features
from ._library import remove_highlights
def get_config():
"""
......
This diff is collapsed.
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
'''
Created on 28 Jun 2017
@author: dgeissbuhler
'''
import sys
import argparse
import bob.io.base
import numpy as np
from bob.ip.qualitymeasure import remove_highlights
def main(command_line_parameters=None):
"""Remove the specular component of the input image and write result to
a file.
"""
argParser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter)
argParser.add_argument(
'-i',
'--input',
dest='inpImg',
default=None,
help='filename of image to be processed (including complete path). ')
argParser.add_argument(
'-o',
'--output',
dest='outImg',
default=None,
help='filename of specular free image.')
args = argParser.parse_args(command_line_parameters)
if not args.inpImg:
argParser.error('Specify parameter --input')
if not args.outImg:
argParser.error('Specify parameter --output')
# 1. open input image
print("Opening file: %s" % args.inpImg)
img = bob.io.image.load(args.inpImg)
# 2. compute
print("Extracting diffuse component...")
sfi, diff, residue = remove_highlights(img.astype(np.float32), 0.5)
# 1. save output image
print("Saving output file: %s" % args.outImg)
bob.io.base.save(diff.astype('uint8'), args.outImg)
print('Done')
if __name__ == '__main__':
main(sys.argv[1:])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment