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
2 changes: 1 addition & 1 deletion include/DrawAux.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <opencv2/core.hpp>
#include <opencv2/core/core.hpp>
#include "Point3D.h"

class DrawAux {
Expand Down
2 changes: 1 addition & 1 deletion include/Point3D.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef POINT3D_H
#define POINT3D_H

#include <opencv2/highgui.hpp>
#include <opencv2/highgui/highgui.hpp>

/**
* This class is a 3D Point based on the 2D point of the OpenCV.
Expand Down
2 changes: 1 addition & 1 deletion include/Skeleton.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef SKELETON_H
#define SKELETON_H

#include <opencv2/highgui.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <Point3D.h>
#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion include/SkeletonDepth.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define SKELETON_DEPTH_H

#include <OpenNI.h>
#include <opencv2/highgui.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "Point3D.h"

class SkeletonDepth {
Expand Down
2 changes: 1 addition & 1 deletion include/SkeletonListener.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <SkeletonPoints.h>
#include <vector>
#include <opencv2/highgui.hpp>
#include <opencv2/highgui/highgui.hpp>

class SkeletonListener {

Expand Down
2 changes: 1 addition & 1 deletion src/DrawAux.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "DrawAux.h"
#include <opencv2/imgproc.hpp>
#include <opencv2/imgproc/imgproc.hpp>

using namespace cv;

Expand Down
6 changes: 3 additions & 3 deletions src/SampleViewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#include <math.h>
#include <string.h>

#include <opencv2/objdetect.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>

#include <iostream>

Expand Down
2 changes: 1 addition & 1 deletion src/Skeleton.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Skeleton.h"
#include <stdio.h>
#include <opencv2/imgproc.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <strings.h>
#include <list>
#include <stack>
Expand Down
2 changes: 1 addition & 1 deletion src/SkeletonDepth.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "SkeletonDepth.h"
#include <stdio.h>
#include <opencv2/imgproc.hpp>
#include <opencv2/imgproc/imgproc.hpp>

using namespace cv;

Expand Down