ObjectCounter::ObjectCounter(cv::Rect referenceBox) {
	Config configuration;
	memset(this->countedPoint, -1, sizeof(this->countedPoint));
	this->pos = 0;
	this->totalLeftCount = configuration.GetLeftCounter();
	this->totalRightCount = configuration.GetRightCounter();
	this->referenceBox = referenceBox;	
}