#include "memoryAllocation.h"
#include "rangeSegDTWTauto.h"
#include "segDTWT.h"
#include <algorithm>
#include <math.h>
#include <string>
#include <iostream>
#include "cppTypes.h"
Go to the source code of this file.
Classes |
class | bodySegDTWT2D |
Functions |
void | convolveRow (float *i, int size, float *o, float *filter, int filter_size) |
void | convolveRow (float *i, int size, float *o, float *filter, int filter_size, int zerosLeft, int zerosRight) |
void | convolveCol (float *i, int size, int i_widthStep, float *o, int o_widthStep, float *filter, int filter_size) |
void | convolveCol (float *i, int size, int i_widthStep, float *o, int o_widthStep, float *filter, int filter_size, int zerosTop, int zerosBottom) |
Function Documentation
void convolveCol |
( |
float * |
i, |
|
|
int |
size, |
|
|
int |
i_widthStep, |
|
|
float * |
o, |
|
|
int |
o_widthStep, |
|
|
float * |
filter, |
|
|
int |
filter_size | |
|
) |
| | |
void convolveCol |
( |
float * |
i, |
|
|
int |
size, |
|
|
int |
i_widthStep, |
|
|
float * |
o, |
|
|
int |
o_widthStep, |
|
|
float * |
filter, |
|
|
int |
filter_size, |
|
|
int |
zerosTop, |
|
|
int |
zerosBottom | |
|
) |
| | |
void convolveRow |
( |
float * |
i, |
|
|
int |
size, |
|
|
float * |
o, |
|
|
float * |
filter, |
|
|
int |
filter_size | |
|
) |
| | |
void convolveRow |
( |
float * |
i, |
|
|
int |
size, |
|
|
float * |
o, |
|
|
float * |
filter, |
|
|
int |
filter_size, |
|
|
int |
zerosLeft, |
|
|
int |
zerosRight | |
|
) |
| | |