- Marquer comme nouveau
- Marquer
- S'abonner
- Sourdine
- S'abonner au fil RSS
- Surligner
- Imprimer
- Signaler un contenu inapproprié
Hi everybody,
I would like to restore a blurred image by constant object motion, useing the Wiener filter.
I can calculate the motion of the object in pixels in the captured image and also the angle of the motion. Is it possible to use the ippiFilterWiener to remove the blurr or that is only made for noise reduction?
What other possibilities I have with IPP functions?
I can calculate the motion of the object in pixels in the captured image and also the angle of the motion. Is it possible to use the ippiFilterWiener to remove the blurr or that is only made for noise reduction?
What other possibilities I have with IPP functions?
Thank you in advance for the help,
zozo'
zozo'
Lien copié
2 Réponses
- Marquer comme nouveau
- Marquer
- S'abonner
- Sourdine
- S'abonner au fil RSS
- Surligner
- Imprimer
- Signaler un contenu inapproprié
Hi,
Yes, Wiener is for denoise operation. Unsharp filtering can help
/// another way, shorter. just one operation with unsharp mask
Ipp32f kernel[] = { -0.1667f, -0.6667f, -0.1667f, -0.6667f, 4.3333f, -0.6667f, -0.1667f, -0.6667f, -0.1667f };
IppiSize kernelSize = {3,3};
IppiPoint kernelAnchor = {1,1};
ippiFilter32f_8u_C1R( src+srcStep+1, srcStep, dst+dstStep+1, dstStep, dstSize, kernel, kernelSize,kernelAnchor);
Regards,
Vladimir
- Marquer comme nouveau
- Marquer
- S'abonner
- Sourdine
- S'abonner au fil RSS
- Surligner
- Imprimer
- Signaler un contenu inapproprié
ok, i will try this, but i would need to construct the kernel in way to use the info about the motion bluri know apriori: the number of pixels it moves and the angle;
in my case the number of pixels is the important one, the movement itself is always a vertical one...
could you help me in this?
thank you,
zozo'

Répondre
Options du sujet
- S'abonner au fil RSS
- Marquer le sujet comme nouveau
- Marquer le sujet comme lu
- Placer ce Sujet en tête de liste pour l'utilisateur actuel
- Marquer
- S'abonner
- Page imprimable