영상의 산술 연산
영상 더하기, 빼기, 곱하기, 나누기
영상의 산술 연산은 영상에 대해 표준 산술 연산(예: 더하기, 빼기, 곱하기, 나누기)을 구현한 것입니다. 영상 처리에서 영상의 산술 연산은 더 복잡한 연산의 예비 단계와 산술 연산 자체로 많이 사용됩니다. 예를 들어, 영상 빼기는 같은 장면 또는 객체에서 두 개 이상의 영상 간 차이를 검출하는 데 사용할 수 있습니다.
함수
imabsdiff | 두 영상의 절대 차분 |
imadd | 두 영상을 더하거나 영상에 상수를 더함 |
imapplymatrix | Linear combination of color channels |
imcomplement | 보수를 사용한 색 반전 영상 |
imdivide | 한 영상을 다른 영상으로 나누기 또는 영상을 상수로 나누기 |
imlincomb | Linear combination of images |
immultiply | 두 영상 곱하기 또는 영상에 상수 곱하기 |
imsubtract | 한 영상에서 다른 영상 빼기 또는 영상에서 상수 빼기 |
도움말 항목
- Image Arithmetic Functions
Image arithmetic is the implementation of standard arithmetic operations, such as addition, subtraction, multiplication, and division, on images.
- Nest Calls to Image Arithmetic Functions
Learn how to maintain precision when performing a series of arithmetic operations in combination..
- Image Arithmetic Clipping Rules
Learn how to deal with results of image arithmetic that exceed the range of the image data type.