|  | 
              
                
                  
                  
                  
                        
                    
 Applies a filter to an input image
 
                  
                
                  
                    filter
                  
                  :
                  float32[,]
                  
                    The filter kernel to apply to the image
                  
                  
                    image
                  
                  :
                  MyImage
                  
                    The input image to process
                   
                
                  
                    Returns: 
                  
                  MyImage
                  
                    A new processed image
                   | 
        
          |  | 
              
                
                  
                  
                  
                        
                    
 Flips an input image either vertically or horizontally
 
                  
                
                  
                    isVertical
                  
                  :
                  bool
                  
                    True to flip the image vertically or false for horizontal flip
                  
                  
                    image
                  
                  :
                  MyImage
                  
                    The input image to flip
                   
                
                  
                    Returns: 
                  
                  MyImage
                  
                    A new flipped image
                   | 
        
          |  | 
              
                
                  
                  
                  
                        
                    
 Rotates an input image either clockwise or counterclockwise
 
                  
                
                  
                    isClockwise
                  
                  :
                  bool
                  
                    True to rotate the image clockwise or false for counterclockwise rotation
                  
                  
                    image
                  
                  :
                  MyImage
                  
                    The input image to rotate
                   
                
                  
                    Returns: 
                  
                  MyImage
                  
                    A new rotated image
                   |