1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
RSpec.describe Magick::Image, '#distortion_channel' do
it 'works' do
image1 = described_class.new(20, 20)
metric = image1.distortion_channel(image1, Magick::MeanAbsoluteErrorMetric)
expect(metric).to be_instance_of(Float)
expect(metric).to eq(0.0)
expect { image1.distortion_channel(image1, Magick::MeanSquaredErrorMetric) }.not_to raise_error
expect { image1.distortion_channel(image1, Magick::PeakAbsoluteErrorMetric) }.not_to raise_error
expect { image1.distortion_channel(image1, Magick::PeakSignalToNoiseRatioErrorMetric) }.not_to raise_error
expect { image1.distortion_channel(image1, Magick::RootMeanSquaredErrorMetric) }.not_to raise_error
expect { image1.distortion_channel(image1, Magick::MeanSquaredErrorMetric, Magick::RedChannel, Magick::BlueChannel) }.not_to raise_error
expect { image1.distortion_channel(image1, Magick::NormalizedCrossCorrelationErrorMetric) }.not_to raise_error
expect { image1.distortion_channel(image1, Magick::FuzzErrorMetric) }.not_to raise_error
expect { image1.distortion_channel(image1, 2) }.to raise_error(TypeError)
expect { image1.distortion_channel(image1, Magick::RootMeanSquaredErrorMetric, 2) }.to raise_error(TypeError)
expect { image1.distortion_channel }.to raise_error(ArgumentError)
expect { image1.distortion_channel(image1) }.to raise_error(ArgumentError)
image2 = described_class.new(20, 20)
image2.destroy!
expect { image1.distortion_channel(image2, Magick::MeanSquaredErrorMetric) }.to raise_error(Magick::DestroyedImageError)
end
it 'accepts an ImageList argument' do
image = described_class.new(20, 20)
image_list = Magick::ImageList.new
image_list.new_image(10, 10)
expect { image.distortion_channel(image_list, Magick::MeanAbsoluteErrorMetric) }.not_to raise_error
expect { image.distortion_channel(image_list, Magick::MeanSquaredErrorMetric, Magick::RedChannel, Magick::BlueChannel) }.not_to raise_error
end
end
|