This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Description
my solution was to comment 3 lines:
public object Clone()
{
var clone = new LocalBinaryPattern(blockSize, cellSize, normalize);
//clone.epsilon = epsilon;
//clone.histograms = (int[,][])histograms.Clone(); //**ERROR HERE**
//clone.patterns = (int[,])patterns.Clone(); //**ERROR HERE**
return clone;
}