How can I deconvolution the spectroscopic spectrum ?

Hi I have abs spectrum contains 2 components how can write a code to deconvolve this graph ? Regard

 채택된 답변

Image Analyst
Image Analyst 2015년 4월 11일

0 개 추천

There are functions conv() and deconvlucy() (for 2D images). You'd need to know what the individual components were convolved with to get your spectrum. Or else take a guess - the "try and see" method.

댓글 수: 4

Thank you for your answer , but I want to know in case I have 2D data what is the structure of code for deconvolution.??
You can use conv2() to do deconvolution:
out = conv2(double(inputImage), kernel, 'same');
And there are examples for deconvlucy() in the help.
what would you set kernel to?
@Rachel depends on the effect you want to achieve. For blurring, a matrix of all ones would do the trick. For sharpening, a positive middle element and negative ones surrounding the middle would sharpen the image.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기

태그

질문:

2015년 4월 11일

댓글:

2024년 12월 7일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by