Skip to content

Commit eefb790

Browse files
committed
b
1 parent 2118cd0 commit eefb790

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
###### FasterRCNN C++ library. (Train,Detect both)
44
* All dependencies are included.
5-
* Can Train FasterRCNN as double click.
5+
* Can train FasterRCNN as double click.
66
* Need only 1 header file, To detect by FasterRCNN.
77

88
<img src="https://i.imgur.com/ElCyyzT.png" title="Windows8" width="48"><img src="https://i.imgur.com/O5bye0l.png" width="48">
@@ -30,14 +30,14 @@ This format follows the [Microsoft/CNTK](https://github.com/Microsoft/CNTK) form
3030
1 <image-path> 0
3131
2 <image-path> 0
3232
```
33-
First column is number of image. Second column is image path. Last column must be zero.
34-
You can see [CNTK/FasterRCNN/train_img_file.txt](https://github.com/springkim/FasterRCNN_SpringEdition/blob/master/CNTK/FasterRCNN/train_img_file.txt) for understand.
33+
First column is index of image. Second column is image path. Last column must be zero.
34+
You can see [CNTK/FasterRCNN/train_img_file.txt](https://github.com/springkim/FasterRCNN_SpringEdition/blob/master/CNTK/FasterRCNN/train_img_file.txt) to understand.
3535
`train_roi_file.txt` follows the format below.
3636
```
3737
0 |roiAndLabel <x1 y1 x2 y2 class>
3838
1 |roiAndLabel <x1 y1 x2 y2 class> <x1 y1 x2 y2 class>
3939
```
40-
First column is number of image ~~(stupid format)~~ , Second column must be `|roiAndLabel` ,Third column is coordinate of object. You can write multiple coordinate of object in same line.
40+
First column is index of image ~~(stupid format)~~ , Second column must be `|roiAndLabel` ,Third column is coordinate of object. You can write multiple coordinate of object in same line.
4141

4242
Finally, It looks like below.
4343
```

0 commit comments

Comments
 (0)