Help me to convert this C++ code to matlab code...?
-
/* convolution */ #ifndef CONVOLVE_H #define CONVOLVE_H #include <vector> #include <algorithm> #include <cmath> #include <math.h> #include "image.h" /* convolve src with mask. dst is flipped! */ static void convolve_even(image<float> *src, image<float> *dst, std::vector<float> &mask) { int width = src->width(); int height = src->height(); int len = mask.size(); for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { float sum = mask[0] * imRef(src, x, y); for (int i = 1; i < len; i++) { sum += mask[i] * (imRef(src, __max(x-i,0), y) + imRef(src, __min(x+i, width-1), y)); } imRef(dst, y, x) = sum; } } } /* convolve src with mask. dst is flipped! */ static void convolve_odd(image<float> *src, image<float> *dst, std::vector<float> &mask) { int width = src->width(); int height = src->height(); int len = mask.size(); for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { float sum = mask[0] * imRef(src, x, y); for (int i = 1; i < len; i++) { sum += mask[i] * (imRef(src, __max(x-i,0), y) - imRef(src, __min(x+i, width-1), y)); } imRef(dst, y, x) = sum; } } } #endif
-
Answer:
Mmm try 'doc conv2', looks like basic 2D convolution.
mei at Yahoo! Answers Visit the source
Related Q & A:
- Can smbd help me to convert some values from real to virtual?Best solution by Stack Overflow
- How to Convert a C++ Structure into C# Structure?Best solution by Stack Overflow
- how to Create a Java Package from MATLAB Code?Best solution by Stack Overflow
- I need help with writing up the Java Code.Best solution by Yahoo! Answers
- How to convert Matlab .m file to C code?Best solution by mathworks.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.