OBJECTS = ShowImg

all: $(OBJECTS)

clean:
	rm -f $(OBJECTS)

ShowImg: Show-image.cpp
	$(CXX) $^ -o $@ `pkg-config --cflags --libs opencv`


