Peter Kurlak
Peter Kurlak
StyleCopAnalyzers version [1.2.0-beta.556](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/releases) fixes SA1010's conflict with IDE0028, among other issues. We need to update
@jonathanou has seen false positives of the .NET 7 implementation of the CA1508 analyzer in internal codebases. The .NET 8 implementation needs to be tested to see if those issues...
Updating to the latest version of the analyzers (2.0.13) results in several compiler/SA errors. Both @epetersoni and myself have seen at least these errors in our projects: - IDE0008: Use...
According to your [article](https://medium.com/swlh/estimating-the-object-distance-using-the-camera-obscura-formulas-and-lens-equations-python-7baaa75a26b8):  However, your [code](https://github.com/Harmouch101/Face-Recogntion-Detection/blob/bec01b81497c18a189326fa229f166b290b8397e/face_detect.py#L41) divides by width: `Distance1 = 11.5*(img.shape[1]/float(w))` Shouldn't that be: `Distance1 = 11.5*(img.shape[1]/float(h))`