-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
siddharth
committed
Jun 16, 2012
1 parent
b31785f
commit 8eb78cb
Showing
11 changed files
with
428 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
This code has been written in C++ using OpenCV library. It has been tested on Ubuntu 12.04 64 bit linux platform. | ||
|
||
Compile: ./build.sh | ||
(Make sure that OpenCV-2.4 is installed on your platform) | ||
|
||
Usage: ./poisson <input image> | ||
|
||
Output: | ||
-> Original Image | ||
-> Reconstructed Image | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
g++ -o poisson image_reconst.cpp -ggdb `pkg-config --cflags opencv` `pkg-config --libs opencv` | ||
|
Oops, something went wrong.