Skip to content

Commit

Permalink
Camera calibration (from the OpenCV sample code)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeradesign committed Jan 28, 2014
1 parent 2fee88b commit 43d28c2
Show file tree
Hide file tree
Showing 4 changed files with 654 additions and 0 deletions.
15 changes: 15 additions & 0 deletions calibrate/Makefile
@@ -0,0 +1,15 @@
INCLUDES = $(shell pkg-config --cflags opencv)
LIBS = $(shell pkg-config --libs opencv)
CXX = clang++
CXXFLAGS = -g -Wall -std=c++11 $(INCLUDES)
LDFLAGS = $(LIBS)

.PHONY: run

run: camera_calibration
./camera_calibration in_camera0.xml

camera_calibration: camera_calibration.cpp

clean:
rm camera_calibration

0 comments on commit 43d28c2

Please sign in to comment.