blob: 14e3d15259531cb6cd44ed7f1e26cf2498efcfce (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Layer.h"
class SmoothLayer : public Layer
{
public:
SmoothLayer(int64_t seedMixup, shared_ptr<Layer>parent);
virtual intArray getArea(int xo, int yo, int w, int h);
};
|