image.cpp 374 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#include "image.h"
#include <ATen/ATen.h>
#include <Python.h>

// If we are in a Windows environment, we need to define
// initialization functions for the _custom_ops extension
#ifdef _WIN32
PyMODINIT_FUNC PyInit_image(void) {
  // No need to do anything.
  return NULL;
}
#endif

static auto registry =
    torch::RegisterOperators().op("image::decode_png", &decodePNG);