Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/filters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ enum FILTERS_IMPLEMENTATIONS {
OPENCV,
// Add your enum value here
// YOUR_NAME,
NUM_IMPLS
Ilya
};

Filters* createFilters(FILTERS_IMPLEMENTATIONS impl);
14 changes: 14 additions & 0 deletions src/filters_Ilya.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include "filters.hpp"

class FiltersYourName : public Filters
{
public:
virtual void boxFilter(const Matrix &src, Matrix& dst, const int kSize = 3)
{ }
virtual void filter2d(const Matrix &src, Matrix& dst, const Matrix &kernel)
{ }
virtual void median(const Matrix &src, Matrix &dst, const int kSize = 3)
{ }
virtual void SobelOx(const Matrix &src, Matrix &dst)
{ }
};