imfilter at single point

조회 수: 2 (최근 30일)
socter
socter 2016년 9월 24일
답변: Image Analyst 2016년 9월 24일
Lets suppose you have an image and a filter of the same size. I want to know how to find the filtered value of the midpoint of the image without filtering the rest of the image.
I am currently using imfilter and then using the midpoint of the output. This is obviously computationally expensive, so if there is a way to circumvent this, please let me know!
Thanks

채택된 답변

Image Analyst
Image Analyst 2016년 9월 24일
Just multiply and add. Something like (untested)
productImage = double(grayImage) .* filterImage;
centerValue = sum(productImage(:));

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by