in frontend/src/App.js [56:69]
constructor(props) {
super(props);
this.state = {
pictures: [],
completed:0,
k:3
};
this.onDrop = this.onDrop.bind(this);
this.getBase64 = this.getBase64.bind(this);
this.getSimilarImages = this.getSimilarImages.bind(this);
this.handleURLSubmit = this.handleURLSubmit.bind(this);
this.handleFormChange = this.handleFormChange.bind(this);
this.handleKChange = this.handleKChange.bind(this);
}