• Patrick Snape's avatar
    Add rendering of faces (lines) · 697aecb4
    Patrick Snape authored
    Can either be a list of full_object_detections or a single
    full_object_detection. I couldn't get the vector type to work
    for full_object_detection due to a template error.
    697aecb4
indexing.h 398 Bytes
// Copyright (C) 2014  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.
#ifndef DLIB_PYTHON_INDEXING_H__
#define DLIB_PYTHON_INDEXING_H__

#include <boost/python/suite/indexing/vector_indexing_suite.hpp>

namespace dlib
{
    template <typename T>
    void resize(T& v, unsigned long n) { v.resize(n); }
}
#endif // DLIB_PYTHON_INDEXING_H__