Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Simplified description  





2 Formulation  





3 Example  





4 Code example  





5 See also  





6 References  














Prewitt operator






العربية
Deutsch
Français
Polski
Português
Русский
Українська

 

Edit links
 









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Cite this page
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


The Prewitt operator is used in image processing, particularly within edge detection algorithms. Technically, it is a discrete differentiation operator, computing an approximation of the gradient of the image intensity function. At each point in the image, the result of the Prewitt operator is either the corresponding gradient vector or the norm of this vector. The Prewitt operator is based on convolving the image with a small, separable, and integer valued filter in horizontal and vertical directions and is therefore relatively inexpensive in terms of computations like Sobel and Kayyali[1] operators. On the other hand, the gradient approximation which it produces is relatively crude, in particular for high frequency variations in the image. The Prewitt operator was developed by Judith M. S. Prewitt.[2]

Simplified description[edit]

In simple terms, the operator calculates the gradient of the image intensity at each point, giving the direction of the largest possible increase from light to dark and the rate of change in that direction. The result therefore shows how "abruptly" or "smoothly" the image changes at that point, and therefore how likely it is that part of the image represents an edge, as well as how that edge is likely to be oriented. In practice, the magnitude (likelihood of an edge) calculation is more reliable and easier to interpret than the direction calculation.

Mathematically, the gradient of a two-variable function (here the image intensity function) is at each image point a 2D vector with the components given by the derivatives in the horizontal and vertical directions. At each image point, the gradient vector points in the direction of largest possible intensity increase, and the length of the gradient vector corresponds to the rate of change in that direction. This implies that the result of the Prewitt operator at an image point which is in a region of constant image intensity is a zero vector and at a point on an edge is a vector which points across the edge, from darker to brighter values.

Formulation[edit]

Mathematically, the operator uses two 3×3 kernels which are convolved with the original image to calculate approximations of the derivatives - one for horizontal changes, and one for vertical. If we define as the source image, and and are two images which at each point contain the horizontal and vertical derivative approximations, the latter are computed as:

where here denotes the 2-dimensional convolution operation.

Since the Prewitt kernels can be decomposed as the products of an averaging and a differentiation kernel, they compute the gradient with smoothing. Therefore, it is a separable filter. For example, can be written as

The x-coordinate is defined here as increasing in the "left"-direction, and the y-coordinate is defined as increasing in the "up"-direction. At each point in the image, the resulting gradient approximations can be combined to give the gradient magnitude, using:

Using this information, we can also calculate the gradient's direction:

where, for example, Θ is 0 for a vertical edge which is darker on the right side.

Example[edit]

Grayscale image of a brick wall & a bike rack
Gradient with Prewitt operator of grayscale image of a brick wall & a bike rack


Code example[edit]

% MATLAB Code | Prewitt Operator from Scratch 

% Read Input Image 
input_image = imread('[name of input image file].[file format]'); 

% Displaying Input Image 
input_image = uint8(input_image); 
figure, imshow(input_image); title('Input Image'); 

% Convert the truecolor RGB image to the grayscale image 
input_image = rgb2gray(input_image); 

% Convert the image to double 
input_image = double(input_image); 

% Pre-allocate the filtered_image matrix with zeros 
filtered_image = zeros(size(input_image)); 

% Prewitt Operator Mask 
Mx = [-1 0 1; -1 0 1; -1 0 1]; 
My = [-1 -1 -1; 0 0 0; 1 1 1]; 

% Edge Detection Process 
% When i = 1 and j = 1, then filtered_image pixel 
% position will be filtered_image(2, 2) 
% The mask is of 3x3, so we need to traverse 
% to filtered_image(size(input_image, 1) - 2 
%, size(input_image, 2) - 2) 
% Thus we are not considering the borders. 
for i = 1:size(input_image, 1) - 2 
 for j = 1:size(input_image, 2) - 2 

  % Gradient approximations 
  Gx = sum(sum(Mx.*input_image(i:i+2, j:j+2))); 
  Gy = sum(sum(My.*input_image(i:i+2, j:j+2))); 
    
  % Calculate magnitude of vector 
  filtered_image(i+1, j+1) = sqrt(Gx.^2 + Gy.^2); 
  
 end
end

% Displaying Filtered Image 
filtered_image = uint8(filtered_image); 
figure, imshow(filtered_image); title('Filtered Image'); 

% Define a threshold value 
thresholdValue = 100; % varies between [0 255] 
output_image = max(filtered_image, thresholdValue); 
output_image(output_image == round(thresholdValue)) = 0; 

% Displaying Output Image 
output_image = im2bw(output_image); 
figure, imshow(output_image); title('Edge Detected Image');

See also[edit]

References[edit]

  1. ^ Dim, Jules R.; Takamura, Tamio (2013-12-11). "Alternative Approach for Satellite Cloud Classification: Edge Gradient Application". Advances in Meteorology. 2013: 1–8. doi:10.1155/2013/584816. ISSN 1687-9309.
  • ^ Prewitt, J.M.S. (1970). "Object Enhancement and Extraction". Picture processing and Psychopictorics. Academic Press.
  • [1]


    Retrieved from "https://en.wikipedia.org/w/index.php?title=Prewitt_operator&oldid=1222936987"

    Category: 
    Edge detection
    Hidden categories: 
    Articles with short description
    Short description matches Wikidata
     



    This page was last edited on 8 May 2024, at 21:20 (UTC).

    Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



    Privacy policy

    About Wikipedia

    Disclaimers

    Contact Wikipedia

    Code of Conduct

    Developers

    Statistics

    Cookie statement

    Mobile view



    Wikimedia Foundation
    Powered by MediaWiki