counting
counting copied to clipboard
Predict count for custom crowd image
I want to predict number of persons in a crowd image. But I haven't found any option in your code for this. In test_model.py file
X = f["data"] y = f["label"] "y_predict = model.predict_generator(gen.flow(X,y, 0, 0, None), X.shape[0])"
This means that I have to annotate my jpg image to generate label. Then using this label, I have to predict count! This is not feasible for me. Because I have to deploy an IP camera on crowd scene and feed the image to your model. Then I hope your model can give the crowd count. Can it be done using your model?