matching output from the identifty command.
Posted: 2015-11-23T07:40:57-07:00
Hello,
I am using ImageMagick 6.9.2-6 Q16 x64 on WIndows 10. I recently use the "identify" command with the "verbose" switch to read some detailed information about an DDS image type. I'm trying to conform the information I received to be able to change another DDS image to the same attributes. The only difference I see between the two are the channel depth, RGB colors and Aplha channel. Below is the two differences:
unedited image:
Image I need to change to match unedited image:
I've tried to make sense of the command-line tool "convert", but I am at a lost to how I would formulate a command to change the edited image to match the unedited image or even if it's possible. Any help would be appreciated.
-Jason
I am using ImageMagick 6.9.2-6 Q16 x64 on WIndows 10. I recently use the "identify" command with the "verbose" switch to read some detailed information about an DDS image type. I'm trying to conform the information I received to be able to change another DDS image to the same attributes. The only difference I see between the two are the channel depth, RGB colors and Aplha channel. Below is the two differences:
unedited image:
Code: Select all
Channel depth:
red: 8-bit
green: 8-bit
blue: 8-bit
alpha: 8-bit
Channel statistics:
Pixels: 3130592
Red:
min: 0 (0)
max: 254 (0.996078)
mean: 96.6081 (0.378855)
standard deviation: 54.2584 (0.212778)
kurtosis: 0.35092
skewness: -0.383135
entropy: 0.70386
Green:
min: 0 (0)
max: 254 (0.996078)
mean: 81.2331 (0.318561)
standard deviation: 61.269 (0.240271)
kurtosis: -0.592613
skewness: 0.302419
entropy: 0.80537
Blue:
min: 0 (0)
max: 255 (1)
mean: 136.069 (0.533605)
standard deviation: 74.9801 (0.29404)
kurtosis: -0.0849212
skewness: -0.363942
entropy: 0.73598
Alpha:
min: 0 (0)
max: 255 (1)
mean: 181.715 (0.71261)
standard deviation: 115.291 (0.452123)
kurtosis: -1.11436
skewness: 0.940305
entropy: 0.114513
Image statistics:
Overall:
min: 0 (0)
max: 255 (1)
mean: 96.7988 (0.379603)
standard deviation: 80.0187 (0.313799)
kurtosis: -0.386124
skewness: 0.433003
entropy: 0.589931
Code: Select all
Channel depth:
red: 8-bit
green: 8-bit
blue: 8-bit
alpha: 1-bit
Channel statistics:
Pixels: 3130592
Red:
min: 0 (0)
max: 255 (1)
mean: 106.208 (0.416501)
standard deviation: 75.1977 (0.294893)
kurtosis: -0.985669
skewness: 0.152831
entropy: 0.898439
Green:
min: 0 (0)
max: 255 (1)
mean: 99.9096 (0.391803)
standard deviation: 74.6307 (0.29267)
kurtosis: -0.983288
skewness: 0.283349
entropy: 0.900504
Blue:
min: 0 (0)
max: 255 (1)
mean: 116.019 (0.454975)
standard deviation: 90.586 (0.355239)
kurtosis: -1.28064
skewness: 0.281044
entropy: 0.807191
Alpha:
min: 0 (0)
max: 255 (1)
mean: 211.305 (0.828648)
standard deviation: 96.0881 (0.376816)
kurtosis: 1.04274
skewness: 1.74434
entropy: 0.0825984
Image statistics:
Overall:
min: 0 (0)
max: 255 (1)
mean: 91.4577 (0.358658)
standard deviation: 84.651 (0.331965)
kurtosis: -0.606921
skewness: 0.627267
entropy: 0.672183
-Jason