Skip to content

Commit

Permalink
doc: Updates docs to be more precise about file names The Readme did …
Browse files Browse the repository at this point in the history
…not specify that the input filenames must be lowercase.
This change clarifies this and makes it explicit that they must also have
png extensions.wq # Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Your branch is up-to-date with 'origin/master'.
#
# Changes to be committed:
#	modified: README.txt
#
  • Loading branch information
Scoobadood committed Nov 3, 2016
1 parent 944f20e commit bf99ac4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,13 @@ Both apps can read command line arguments. By adding the argument "--help" you w

The coarsest level of the pyramid is always 15 x 20, so the total number of coarse-to-fine levels will depend on the parameter "rows". By default, rows = 240.

The images that "Scene-Flow-Impair" reads must be named as "I1" (first intensity image), "I2" (second intensity image", "Z1" (first depth image) and "Z2" (second depth image) and must be located in the same directory as the executable. Furthermore, they must be saved with the following format:
The images that "Scene-Flow-Impair" reads must be named as
"i1.png" (first intensity image
"i2.png" (second intensity image")
"z1.png" (first depth image); and
"z2.png" (second depth image)

Note these names are case sensitive and the files must be located in the same directory as the executable. Furthermore, they must be saved with the following format:

intensity images - 8 bit in PNG. Resolution of VGA or QVGA
Clue: Use cv::Mat image_name(height, width, CV_8U) and
Expand Down

0 comments on commit bf99ac4

Please sign in to comment.