Hash patterns and bloctches
Posted: 2015-11-24T15:06:53-07:00
I decided to revisit this image.
I can remove the hash pattern by using a no-op command:
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.
however this changed the tone of the image.
Help me find a cleaner way to do this.
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.