| 427 | } |
| 428 | |
| 429 | void DetectionAutomatic::setAutomaticCalibrationData(QString signature, int quality, int width, int height, |
| 430 | std::vector<DetectionAutomatic::calibrationPoint> sdrVec, std::vector<DetectionAutomatic::calibrationPoint> hdrVec) |
| 431 | { |
| 432 | resetStats(); |
| 433 | checkData.reset(); |
| 434 | checkData.signature = signature; |
| 435 | checkData.quality = quality; |
| 436 | checkData.width = width; |
| 437 | checkData.height = height; |
| 438 | checkData.sdrPoint = sdrVec; |
| 439 | checkData.hdrPoint = hdrVec; |
| 440 | } |
| 441 | |
| 442 | void DetectionAutomatic::resetStats() |
| 443 | { |
no test coverage detected