Script giving different results
Posted: 2014-04-28T06:42:56-07:00
I am using this script
On one of the input it gave this result-
Input

Output

While on the other one it gave
Input

Output

What should I do different to clean up the green board image like the whiteboard one?
Code: Select all
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
Input

Output

While on the other one it gave
Input

Output

What should I do different to clean up the green board image like the whiteboard one?