I can remove the hash pattern by using a no-op command:
Code: Select all
convert input -filter lanczos -distort resize 100% hash_removed.png
However this introduces bloctches.
Previously I discovered I could cancel out the blotches and hash by adding on some color space conversions and averaging the final result in Photoshop.
Code: Select all
convert input.jpg -colorspace log -filter lanczos -distort resize 100% hash_removed_log.png"
convert input.jpg +sigmoidal-contrast 5.5 -filter lanczos -distort resize 100% hash_removed_sigmoidal.png"
however this changed the tone of the image.
Help me find a cleaner way to do this.