- 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?
24 次查看(过去 30 天)
显示 更早的评论
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:
code:
I=imread('82.jpg');
figure
imshow(I)
Gauss = imgaussfilt(I,1);
figure,imshow(Gauss)
0 个评论
采纳的回答
Image Analyst
2015-11-28
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 个评论
Image Analyst
2015-11-28
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.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!