Skip to content
Snippets Groups Projects
Commit f4d00966 authored by simon.fanetti's avatar simon.fanetti
Browse files

change make

parent 0e051ff5
No related branches found
No related tags found
No related merge requests found
API_PATH=../ar_sanbox_lib
API_PATH=../ar_sandbox_lib
CFLAGS=-std=c++11 -Wall -Wextra -g
OPENCVFLAG=`pkg-config --libs --cflags opencv`
CAMERAFLAG=-lrealsense2
CCP=g++
app: app.o
$(CCP) $(OPENCVFLAG) $(CAMERAFLAG) -L$(API_PATH) -lsandbox $^ -o $@
$(CCP) $(OPENCVFLAG) -L$(API_PATH) -lsandbox $^ -o $@
%.o: %.cpp
$(CCP) $(CFLAGS) -I$(API_PATH)/includes -c $< -o $@
......
#include "sandbox.h"
#include "../ar_sandbox_lib/includes/sandbox.h"
#include <numeric>
#include <fstream>
#include <string>
......@@ -53,7 +53,7 @@ Mat coloredFrame(Mat frameDepth)
void showLevel()
{
char windowName[] = "Sandbox";
//char windowName[] = "Sandbox";
Mat frameData;
client.getDepthFrame().copyTo(frameData);
Mat colored;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment