You are on page 1of 1

Image processing

Extension:
Block Processing Large Images : When working with large images, normal image
processing techniques can sometimes break down. The images can either be too large to
load into memory, or else they can be loaded into memory but then be too large to process.
To avoid these problems, you can process large images incrementally: reading, processing,
and finally writing the results back to disk, one region at a time. The blockproc function helps
you with this process.
https://ww2.mathworks.cn/help/images/block-processing-large-images.html

Resize an Image with imresize Function: using the imresize function.to resize an picture
https://ww2.mathworks.cn/help/images/resize-an-image.html

Rotate an Image: rotate an image using the imrotate function. When you rotate an image,
you specify the image to be rotated and the rotation angle, in degrees. If you specify a positive
rotation angle, the image rotates counterclockwise; if you specify a negative rotation angle,
the image rotates clockwise.
https://ww2.mathworks.cn/help/images/rotate-an-image.html

Texture Segmentation Using Gabor Filters: use texture segmentation to identify regions
based on their texture.
https://ww2.mathworks.cn/help/images/texture-segmentation-using-
gabor-filters.html

Low-Light Image Enhancement: Using haze removal techniques to enhance low-light


images. Images captured in outdoor scenes can be highly degraded due to poor lighting
conditions. These images can have low dynamic ranges with high noise levels that affect the
overall performance of computer vision algorithms. To make computer vision algorithms
robust in low-light conditions, use low-light image enhancement to improve the visibility of
an image. The histogram of pixel-wise inversion of low-light images or HDR images is very
similar to the histogram of hazy images. Thus, you can use haze removal techniques to
enhance low-light images.
https://ww2.mathworks.cn/help/images/low-light-image-enhancement.html

Deblurring Images Using a Wiener Filter: Use Wiener deconvolution to deblur images.
Wiener deconvolution can be useful when the point-spread function and noise level are either
known or estimated.
https://ww2.mathworks.cn/help/images/deblurring-images-using-a-
wiener-filter.html

You might also like