1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/vis/bug29847
dipts 56cc44e0f5 0029847: Visualization, Image_Diff - Tolerance is not effective for 24/32bit image formats
Image_Color - removed semibroken summ/difference operators.
Image_Diff now uses signed integer for computing differnce between ubyte3 components;
properly compare squared tolerance.

Image_Diff - dropped declaration of Image_ColorXXX24.
RGB color difference is now computed using Chebyshev distance instead of Euclidean distance
Image_PixMap - added methods RawValue()/ChangeRawValue() returning a pointer
to image where specified pixel data is defined.
2018-06-14 14:03:13 +03:00

19 lines
986 B
Plaintext

puts "============"
puts "0029847: Visualization, Image_Diff - Tolerance is not effective for 24/32bit image formats"
puts "============"
puts ""
pload VISUALIZATION
vclear
vinit View1
vsetcolorbg 127 127 127
vdump $imagedir/${casename}_127.png
vsetcolorbg 130 130 130
vdump $imagedir/${casename}_130.png
set aNbDiff0 [diffimage $imagedir/${casename}_127.png $imagedir/${casename}_130.png $imagedir/${casename}_0.png -toleranceOfColor 0]
set aNbDiff1 [diffimage $imagedir/${casename}_127.png $imagedir/${casename}_130.png $imagedir/${casename}_1.png -toleranceOfColor 0.1]
set aNbDiff01 [diffimage $imagedir/${casename}_127.png $imagedir/${casename}_130.png $imagedir/${casename}_01.png -toleranceOfColor 0.01]
if { $aNbDiff0 != 167281 } { puts "Error: difference with tolerance 0.0 is incorrect" }
if { $aNbDiff1 != 0 } { puts "Error: difference with tolerance 0.1 is incorrect" }
if { $aNbDiff01 != 167281 } { puts "Error: difference with tolerance 0.01 is incorrect" }