| 36 | TVector<float> borders; |
| 37 | bool hasBorders = false; |
| 38 | with_lock (Lock) { |
| 39 | if (FeaturesManager.HasBorders(featureId)) { |
| 40 | borders = FeaturesManager.GetBorders(featureId); |
| 41 | hasBorders = true; |
| 42 | } |
| 43 | } |
| 44 | if (!hasBorders) { |
| 45 | borders = ComputeBorders(binarizationDescription, floatFeature, stream); |
| 46 | with_lock (Lock) { |
nothing calls this directly
no test coverage detected