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
22 changes: 11 additions & 11 deletions include/pangolin/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@
/* #undef HAVE_CUDA */
#define HAVE_PYTHON

#define HAVE_EIGEN
/* #undef HAVE_EIGEN */
/* #undef HAVE_TOON */

#define HAVE_DC1394
/* #undef HAVE_DC1394 */
#define HAVE_V4L
#define HAVE_OPENNI
/* #undef HAVE_OPENNI */
/* #undef HAVE_LIBREALSENSE */
#define HAVE_OPENNI2
/* #undef HAVE_OPENNI2 */
/* #undef HAVE_UVC */
/* #undef HAVE_DEPTHSENSE */
/* #undef HAVE_TELICAM */
/* #undef HAVE_PLEORA */

#define HAVE_FFMPEG
/* #undef HAVE_FFMPEG */
/* #undef HAVE_FFMPEG_MAX_ANALYZE_DURATION2 */
#define HAVE_FFMPEG_AVFORMAT_ALLOC_OUTPUT_CONTEXT2
#define HAVE_FFMPEG_AVPIXELFORMAT
/* #undef HAVE_FFMPEG_AVFORMAT_ALLOC_OUTPUT_CONTEXT2 */
/* #undef HAVE_FFMPEG_AVPIXELFORMAT */

#define HAVE_GLEW
/* #undef GLEW_STATIC */
Expand All @@ -48,10 +48,10 @@
/* #undef HAVE_GLES_2 */
/* #undef HAVE_OCULUS */

#define HAVE_PNG
#define HAVE_JPEG
#define HAVE_TIFF
#define HAVE_OPENEXR
/* #undef HAVE_PNG */
/* #undef HAVE_JPEG */
/* #undef HAVE_TIFF */
/* #undef HAVE_OPENEXR */
/* #undef HAVE_ZSTD */

/// Platform
Expand Down
2 changes: 1 addition & 1 deletion include/pangolin/gl/colour.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#pragma once

#include <cmath>

#include <limits>
#include <stdexcept>

namespace pangolin
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ class CopyLibFile(install):
"""

def run(self):
install_dir = get_python_lib()
install_dirs = get_python_lib()

lib_file = glob.glob(__library_file__)
assert len(lib_file) == 1 and len(install_dirs) >= 1

print('copying {} -> {}'.format(lib_file[0], install_dirs[0]))
shutil.copy(lib_file[0], install_dir)
shutil.copy(lib_file[0], install_dirs)



Expand Down