Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 085c9cf

Browse files
author
Unknown
committedMay 21, 2017
Merge remote-tracking branch 'origin/master'
2 parents 7d12ea0 + 3812da5 commit 085c9cf

File tree

6 files changed

+1028
-2
lines changed

6 files changed

+1028
-2
lines changed
 

‎SM7_CV/Static/w2/img_show.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
def main():
66
parser = argparse.ArgumentParser()
7-
parser.add_argument('--in_file', type=str, help='input text file path', default='/out/table2.txt')
7+
parser.add_argument('--in_file', type=str, help='input text file path', default='./out/cars5.txt')
88

99
args = parser.parse_args()
1010

1111
img = np.loadtxt(args.in_file, dtype=int)
12-
img = 50*img.astype(np.uint8)
12+
img = img.astype(np.uint8)
1313

1414
cv2.imshow('image', img)
1515
cv2.waitKey(0)

‎SM7_CV/Static/w2/out/cars2.png

209 KB
Loading

‎SM7_CV/Static/w2/out/cars3.txt

+513
Large diffs are not rendered by default.

‎SM7_CV/Static/w2/out/cars5.txt

+513
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.