Open gwspotex opened 6 years ago
take a look in my fork , you can set the grayscale mode in config.json, also you can use a different size for width and height
sorry i can't find where is grayscale mode ?
here. It is missing in readme.md, I will fix it
Who can tell me how to change the input shape of YOLO (because the input is grayscale), I don't want to waste time stacking single channels into three channels, so I change the code in the following places
input_image = Input(shape=(self.input_size, self.input_size, 3->1))
input_image = Input(shape=(input_size, input_size, 3->1))
after change have error
but i try grayscale input is OK