- 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?
17 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ali Abdallah
le 28 Nov 2015
Commenté : Image Analyst
le 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:
code:
I=imread('82.jpg');
figure
imshow(I)
Gauss = imgaussfilt(I,1);
figure,imshow(Gauss)
0 commentaires
Réponse acceptée
Image Analyst
le 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 commentaires
Image Analyst
le 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.
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!