- Use a faster frame rate to reduce motion blur.
- White balance your camera to improve color fidelity.
- Use a smaller aperture (larger F/stop) to improve the depth of field.
- Use more light to reduce noise and improve colors.
- Use a better camera for obvious reasons.
- Use a better lens to reduce optical aberrations (spherical, distortion, coma, chromatic, etc.)
- Use better lighting, perhaps softboxes or umbrellas
How to improve my image quality with using specific image filtering?
18 views (last 30 days)
Show older comments
Ali Abdallah
on 28 Nov 2015
Commented: Image Analyst
on 28 Nov 2015
I want to improve my image quality but I don't know what filter or tool that help me to do that with a RGB image I try Gaussian but it's not enough I want more improvement in my picture:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/152289/image.jpeg)
code:
I=imread('82.jpg');
figure
imshow(I)
Gauss = imgaussfilt(I,1);
figure,imshow(Gauss)
0 Comments
Accepted Answer
Image Analyst
on 28 Nov 2015
Well of course a filter to blur the image won't improve it - not sure why you thought it would. The things you need to improve it are optical, not software. These are:
Following my suggestions above will give you a better image than you can get with post processing a crummy image in MATLAB.
2 Comments
Image Analyst
on 28 Nov 2015
Try using imadjust() to increase the contrast. You can also use imfilter() or conv2() to sharpen the edges with the kernel he probably gave you in class.
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!