blob: 4251a96909c16362a1b2de3d6b75968d8f4018a6 [file]
// Copyright (c) 2015 by Contributors
#include <mxnet/io.h>
#include <dmlc/registry.h>
#include "./image_augmenter.h"
#include "./iter_normalize.h"
#include "./iter_batchloader.h"
#include "./iter_prefetcher.h"
// Registers
namespace dmlc {
DMLC_REGISTRY_ENABLE(::mxnet::DataIteratorReg);
} // namespace dmlc
namespace mxnet {
namespace io {
// Register parameters in header files
DMLC_REGISTER_PARAMETER(BatchParam);
DMLC_REGISTER_PARAMETER(PrefetcherParam);
DMLC_REGISTER_PARAMETER(ImageNormalizeParam);
} // namespace io
} // namespace mxnet